summaryrefslogtreecommitdiff
path: root/src/server/web/views/note.pug
blob: 22f18340592adaa74bf3d41f1c921126b45ace86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
extends ../../../../src/client/app/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} | Misskey`

block desc
	meta(name='description' content= summary)

block meta
	meta(name='twitter:card'       content='summary')
	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)

	if note.prev
		link(rel='prev' href=`${config.url}/notes/${note.prev}`)
	if note.next
		link(rel='next' href=`${config.url}/notes/${note.next}`)