From 12790f7e8e48c2571b1a441530486054710ce1f1 Mon Sep 17 00:00:00 2001 From: redmt Date: Fri, 10 Jun 2022 11:30:44 +0200 Subject: [PATCH] Add og: meta tags to about.pug --- views/about.pug | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/views/about.pug b/views/about.pug index 74cce84..d599354 100644 --- a/views/about.pug +++ b/views/about.pug @@ -2,6 +2,13 @@ doctype html html head title about - teddit + meta(name='twitter:card', content='summary') + meta(property='og:title', content='about - teddit') + meta(property='og:description', content='Teddit is a free and open source alternative Reddit front-end focused on privacy. Teddit doesn\'t require you to have JavaScript enabled in your browser.') + meta(property='og:image', content='/logo512.png') + meta(property='og:image:width', content='128') + meta(property='og:image:height', content='128') + meta(property='og:author_name', content='') include includes/head.pug body(class=""+ (user_preferences.theme === 'auto' ? 'dark' : user_preferences.theme) + "") include includes/topbar.pug