update pug description
This commit is contained in:
parent
e7065fd809
commit
a79e5275fe
|
@ -385,6 +385,8 @@ router.get('/notes/:note', async (ctx, next) => {
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
//TODO: remove. public test.
|
||||||
|
ctx.set('Debug-Serve', 'public, max-age=15');
|
||||||
|
|
||||||
await next();
|
await next();
|
||||||
});
|
});
|
||||||
|
|
|
@ -50,17 +50,16 @@ html
|
||||||
= title || 'Calckey'
|
= title || 'Calckey'
|
||||||
|
|
||||||
block desc
|
block desc
|
||||||
meta(name='description' content=desc || 'An open source, decentralized social media platform that\'s free forever! 🚀')
|
meta(name='description' content= desc || '🌎 A open source, decentralized social media platform that\'s free forever 🚀')
|
||||||
|
|
||||||
block meta
|
block meta
|
||||||
if privateMode
|
if privateMode
|
||||||
meta(name='robots' content='noindex')
|
meta(name='robots' content='noindex')
|
||||||
|
|
||||||
block og
|
block og
|
||||||
meta(property='og:title' content=title || 'Calckey')
|
meta(property='og:title' content= title || 'Calckey')
|
||||||
meta(property='og:description' content=desc || 'An open source, decentralized social media platform that\'s free forever! 🚀')
|
meta(property='og:description' content= desc || '🌎 A open source, decentralized social media platform that\'s free forever 🚀')
|
||||||
meta(property='og:image' content=img)
|
meta(property='og:image' content= img)
|
||||||
meta(property='og:image:alt' content=alt || 'Pfp')
|
|
||||||
|
|
||||||
style
|
style
|
||||||
include ../style.css
|
include ../style.css
|
||||||
|
|
Loading…
Reference in New Issue