Use new character structure
This commit is contained in:
@ -49,8 +49,8 @@ func Get(ctx *aero.Context) string {
|
||||
|
||||
ctx.Data = &arn.OpenGraph{
|
||||
Tags: map[string]string{
|
||||
"og:title": character.Name,
|
||||
"og:image": "https:" + character.Image,
|
||||
"og:title": character.Name.Canonical,
|
||||
"og:image": "https:" + character.ImageLink("large"),
|
||||
"og:url": "https://" + ctx.App.Config.Domain + character.Link(),
|
||||
"og:site_name": "notify.moe",
|
||||
"og:description": description,
|
||||
@ -61,7 +61,7 @@ func Get(ctx *aero.Context) string {
|
||||
},
|
||||
Meta: map[string]string{
|
||||
"description": description,
|
||||
"keywords": character.Name + ",anime,character",
|
||||
"keywords": character.Name.Canonical + ",anime,character",
|
||||
},
|
||||
}
|
||||
|
||||
|
@ -3,11 +3,16 @@ component CharacterDetails(character *arn.Character, characterAnime []*arn.Anime
|
||||
.character-left-column
|
||||
.character-header
|
||||
.character-image-container
|
||||
img.character-image-fullsize(src=character.Image, alt=character.Name)
|
||||
img.character-image-fullsize(src=character.ImageLink("large"), alt=character.Name.Canonical)
|
||||
.character-description-container
|
||||
h1.character-name= character.Name
|
||||
h1.character-name= character.Name.Canonical
|
||||
|
||||
.anime-alternative-title
|
||||
Japanese("日本語の名前無し")
|
||||
if character.Name.Japanese != ""
|
||||
Japanese(character.Name.Japanese)
|
||||
else
|
||||
Japanese("日本語の名前無し")
|
||||
|
||||
.character-description!= markdown.Render(character.Description)
|
||||
|
||||
h3 Anime
|
||||
|
Reference in New Issue
Block a user