2018-12-15 16:19:04 +02:00
|
|
|
extends ./base
|
2018-05-05 19:34:48 +03:00
|
|
|
|
|
|
|
block vars
|
|
|
|
- const title = user.name ? `${user.name} (@${user.username})` : `@${user.username}`;
|
2018-09-01 17:12:51 +03:00
|
|
|
- const url = `${config.url}/@${(user.host ? `${user.username}@${user.host}` : user.username)}`;
|
2018-10-21 20:27:45 +03:00
|
|
|
- const img = user.avatarUrl || null;
|
2018-05-05 19:34:48 +03:00
|
|
|
|
|
|
|
block title
|
2018-09-08 15:44:28 +03:00
|
|
|
= `${title} | ${config.name}`
|
2018-05-05 19:34:48 +03:00
|
|
|
|
|
|
|
block desc
|
|
|
|
meta(name='description' content= user.description)
|
|
|
|
|
2018-12-15 16:19:04 +02:00
|
|
|
block og
|
2018-05-05 19:37:32 +03:00
|
|
|
meta(property='og:type' content='blog')
|
2018-05-05 19:34:48 +03:00
|
|
|
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)
|
2018-12-15 16:19:04 +02:00
|
|
|
|
|
|
|
block meta
|
|
|
|
meta(name='twitter:card' content='summary')
|
|
|
|
|
2018-12-16 01:49:38 +02:00
|
|
|
if user.twitter
|
|
|
|
meta(name='twitter:creator' content=`@${user.twitter.screenName}`)
|
|
|
|
|
2018-09-07 13:22:14 +03:00
|
|
|
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')
|