Use new character structure

This commit is contained in:
2018-03-27 05:25:25 +02:00
parent a1cfe624ae
commit fd6ab8eb02
9 changed files with 39 additions and 130 deletions

View File

@ -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",
},
}