diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-12-28 16:08:22 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2021-12-29 17:02:47 +0100 |
commit | 98c973430b3d4667e8f6645628fc00284ef041e8 (patch) | |
tree | 86a17dedeb59676fd00a25a39b722c7f4155185c /views/head.pug | |
parent | 0a8a73c47d8fe0c63425af3ab0394ae52b0f3532 (diff) | |
download | server-98c973430b3d4667e8f6645628fc00284ef041e8.tar.gz |
Add OpenGraph meta tags to display previews on social media.
Diffstat (limited to 'views/head.pug')
-rw-r--r-- | views/head.pug | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/views/head.pug b/views/head.pug index 9c7eed3..3c65c23 100644 --- a/views/head.pug +++ b/views/head.pug @@ -5,6 +5,15 @@ link(rel="icon" type="image/svg+xml" href="/favicon.svg") link(rel="stylesheet" href="/fonts/fonts.css") link(rel="stylesheet" href="/style.css") +mixin social(title,description,game) + meta(property="og:title" content=title) + meta(property="og:type" content="website") + if game + meta(property="og:image" content="https://rally-the-troops.com/"+game+"/cover.2x.jpg") + else + meta(property="og:image" content="https://rally-the-troops.com/images/rally-the-troops.png") + meta(property="og:description" content=description) + mixin gamecover(title_id) a(href="/info/"+title_id) img(src=`/${title_id}/cover.1x.jpg` srcset=`/${title_id}/cover.2x.jpg 2x`) |