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