summaryrefslogtreecommitdiff
path: root/src/server/web/views/user.pug
blob: 506a889d98f124ea55a10b644d5e0d8b9157febd (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
26
27
extends ../../../../src/client/app/base

block vars
	- const title = user.name ? `${user.name} (@${user.username})` : `@${user.username}`;
	- const url = `${config.url}/@${(user.host ? `${user.username}@${user.host}` : user.username)}`;
	- const img = user.avatarId ? `${config.drive_url}/${user.avatarId}` : null;

block title
	= `${title} | ${config.name}`

block desc
	meta(name='description' content= user.description)

block meta
	meta(name='twitter:card'       content='summary')
	meta(property='og:type'        content='blog')
	meta(property='og:title'       content= title)
	meta(property='og:description' content= user.description)
	meta(property='og:url'         content= url)
	meta(property='og:image'       content= img)
	
	if !user.host
		link(rel='alternate' href=`${config.url}/users/${user._id}` type='application/activity+json')
	if user.uri
		link(rel='alternate' href=user.uri type='application/activity+json')
	if user.url
		link(rel='alternate' href=user.url type='text/html')