mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 14:33:09 +02:00
19 lines
502 B
Text
19 lines
502 B
Text
|
extends ./base
|
||
|
|
||
|
block vars
|
||
|
- const title = channel.name;
|
||
|
- const url = `${config.url}/channels/${channel.id}`;
|
||
|
|
||
|
block title
|
||
|
= `${title} | ${instanceName}`
|
||
|
|
||
|
block desc
|
||
|
meta(name='description' content= channel.description)
|
||
|
|
||
|
block og
|
||
|
meta(property='og:type' content='article')
|
||
|
meta(property='og:title' content= title)
|
||
|
meta(property='og:description' content= channel.description)
|
||
|
meta(property='og:url' content= url)
|
||
|
meta(property='og:image' content= channel.bannerUrl)
|