2018-12-15 07:19:04 -07:00
|
|
|
extends ./base
|
2018-05-05 10:34:48 -06:00
|
|
|
|
|
|
|
block vars
|
|
|
|
- const title = user.name ? `${user.name} (@${user.username})` : `@${user.username}`;
|
2018-09-01 08:12:51 -06:00
|
|
|
- const url = `${config.url}/@${(user.host ? `${user.username}@${user.host}` : user.username)}`;
|
2018-10-21 11:27:45 -06:00
|
|
|
- const img = user.avatarUrl || null;
|
2018-05-05 10:34:48 -06:00
|
|
|
|
|
|
|
block title
|
2019-02-06 06:27:23 -07:00
|
|
|
= `${title} | ${instanceName}`
|
2018-05-05 10:34:48 -06:00
|
|
|
|
|
|
|
block desc
|
2019-04-11 10:52:25 -06:00
|
|
|
meta(name='description' content= profile.description)
|
2018-05-05 10:34:48 -06:00
|
|
|
|
2018-12-15 07:19:04 -07:00
|
|
|
block og
|
2018-05-05 10:37:32 -06:00
|
|
|
meta(property='og:type' content='blog')
|
2018-05-05 10:34:48 -06:00
|
|
|
meta(property='og:title' content= title)
|
2019-04-11 10:52:25 -06:00
|
|
|
meta(property='og:description' content= profile.description)
|
2018-05-05 10:34:48 -06:00
|
|
|
meta(property='og:url' content= url)
|
|
|
|
meta(property='og:image' content= img)
|
2018-12-15 07:19:04 -07:00
|
|
|
|
|
|
|
block meta
|
2019-04-03 11:22:50 -06:00
|
|
|
meta(name='misskey:user-username' content=user.username)
|
|
|
|
meta(name='misskey:user-id' content=user.id)
|
|
|
|
|
2018-12-15 07:19:04 -07:00
|
|
|
meta(name='twitter:card' content='summary')
|
|
|
|
|
2019-04-11 10:52:25 -06:00
|
|
|
if profile.twitter
|
|
|
|
meta(name='twitter:creator' content=`@${profile.twitter.screenName}`)
|
2018-12-15 16:49:38 -07:00
|
|
|
|
2018-09-07 04:22:14 -06:00
|
|
|
if !user.host
|
2019-04-11 10:52:25 -06:00
|
|
|
link(rel='alternate' href=`${config.url}/users/${user.id}` type='application/activity+json')
|
2018-09-07 04:22:14 -06:00
|
|
|
if user.uri
|
|
|
|
link(rel='alternate' href=user.uri type='application/activity+json')
|
2019-04-11 10:52:25 -06:00
|
|
|
if profile.url
|
|
|
|
link(rel='alternate' href=profile.url type='text/html')
|