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
|
2019-02-06 15:27:23 +02:00
|
|
|
= `${title} | ${instanceName}`
|
2018-05-05 19:34:48 +03:00
|
|
|
|
|
|
|
block desc
|
2019-04-11 19:52:25 +03:00
|
|
|
meta(name='description' content= profile.description)
|
2018-05-05 19:34:48 +03:00
|
|
|
|
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)
|
2019-04-11 19:52:25 +03:00
|
|
|
meta(property='og:description' content= profile.description)
|
2018-05-05 19:34:48 +03:00
|
|
|
meta(property='og:url' content= url)
|
|
|
|
meta(property='og:image' content= img)
|
2018-12-15 16:19:04 +02:00
|
|
|
|
|
|
|
block meta
|
2019-04-03 20:22:50 +03:00
|
|
|
meta(name='misskey:user-username' content=user.username)
|
|
|
|
meta(name='misskey:user-id' content=user.id)
|
|
|
|
|
2018-12-15 16:19:04 +02:00
|
|
|
meta(name='twitter:card' content='summary')
|
|
|
|
|
2019-05-13 20:50:23 +03:00
|
|
|
if user.host
|
|
|
|
meta(name='robots' content='noindex')
|
|
|
|
|
2019-04-11 19:52:25 +03:00
|
|
|
if profile.twitter
|
|
|
|
meta(name='twitter:creator' content=`@${profile.twitter.screenName}`)
|
2018-12-16 01:49:38 +02:00
|
|
|
|
2019-09-23 22:08:52 +03:00
|
|
|
if !sub
|
|
|
|
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 profile.url
|
|
|
|
link(rel='alternate' href=profile.url type='text/html')
|
2019-07-17 18:11:39 +03:00
|
|
|
|
2019-07-25 18:17:34 +03:00
|
|
|
each m in me
|
|
|
|
link(rel='me' href=`${m}`)
|