2018-12-15 15:19:04 +01:00
|
|
|
extends ./base
|
2018-05-05 18:34:48 +02:00
|
|
|
|
|
|
|
block vars
|
|
|
|
- const user = note.user;
|
|
|
|
- const title = user.name ? `${user.name} (@${user.username})` : `@${user.username}`;
|
|
|
|
- const url = `${config.url}/notes/${note.id}`;
|
|
|
|
|
|
|
|
block title
|
2018-09-08 14:44:28 +02:00
|
|
|
= `${title} | ${config.name}`
|
2018-05-05 18:34:48 +02:00
|
|
|
|
|
|
|
block desc
|
|
|
|
meta(name='description' content= summary)
|
|
|
|
|
2018-12-15 15:19:04 +01:00
|
|
|
block og
|
2018-05-05 18:37:32 +02:00
|
|
|
meta(property='og:type' content='article')
|
2018-05-05 18:34:48 +02:00
|
|
|
meta(property='og:title' content= title)
|
|
|
|
meta(property='og:description' content= summary)
|
|
|
|
meta(property='og:url' content= url)
|
2018-05-05 19:08:27 +02:00
|
|
|
meta(property='og:image' content= user.avatarUrl)
|
2018-05-05 18:43:53 +02:00
|
|
|
|
2018-12-15 15:19:04 +01:00
|
|
|
block meta
|
|
|
|
meta(name='twitter:card' content='summary')
|
|
|
|
|
2018-05-05 18:43:53 +02:00
|
|
|
if note.prev
|
2018-05-05 18:46:35 +02:00
|
|
|
link(rel='prev' href=`${config.url}/notes/${note.prev}`)
|
2018-05-05 18:43:53 +02:00
|
|
|
if note.next
|
2018-05-05 18:46:35 +02:00
|
|
|
link(rel='next' href=`${config.url}/notes/${note.next}`)
|
2018-09-07 12:22:14 +02:00
|
|
|
|
|
|
|
if !user.host
|
|
|
|
link(rel='alternate' href=url type='application/activity+json')
|