31 lines
837 B
Plaintext
31 lines
837 B
Plaintext
extends ./base
|
|
|
|
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
|
|
= `${title} | ${config.name}`
|
|
|
|
block desc
|
|
meta(name='description' content= summary)
|
|
|
|
block og
|
|
meta(property='og:type' content='article')
|
|
meta(property='og:title' content= title)
|
|
meta(property='og:description' content= summary)
|
|
meta(property='og:url' content= url)
|
|
meta(property='og:image' content= user.avatarUrl)
|
|
|
|
block meta
|
|
meta(name='twitter:card' content='summary')
|
|
|
|
if note.prev
|
|
link(rel='prev' href=`${config.url}/notes/${note.prev}`)
|
|
if note.next
|
|
link(rel='next' href=`${config.url}/notes/${note.next}`)
|
|
|
|
if !user.host
|
|
link(rel='alternate' href=url type='application/activity+json')
|