mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 06:23:08 +02:00
915ed39715
* feat: use summary_large_image * chore: add video * chore: ignore sensitive image on note
19 lines
553 B
Text
19 lines
553 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)
|
|
meta(property='twitter:card' content='summary')
|