2018-12-15 08:19:04 -06:00
|
|
|
extends ./base
|
2018-05-05 11:34:48 -05:00
|
|
|
|
|
|
|
block vars
|
|
|
|
- const user = note.user;
|
|
|
|
- const title = user.name ? `${user.name} (@${user.username})` : `@${user.username}`;
|
|
|
|
- const url = `${config.url}/notes/${note.id}`;
|
|
|
|
|
|
|
|
block title
|
2019-02-06 07:27:23 -06:00
|
|
|
= `${title} | ${instanceName}`
|
2018-05-05 11:34:48 -05:00
|
|
|
|
|
|
|
block desc
|
|
|
|
meta(name='description' content= summary)
|
|
|
|
|
2018-12-15 08:19:04 -06:00
|
|
|
block og
|
2018-05-05 11:37:32 -05:00
|
|
|
meta(property='og:type' content='article')
|
2018-05-05 11:34:48 -05:00
|
|
|
meta(property='og:title' content= title)
|
|
|
|
meta(property='og:description' content= summary)
|
|
|
|
meta(property='og:url' content= url)
|
2018-05-05 12:08:27 -05:00
|
|
|
meta(property='og:image' content= user.avatarUrl)
|
2018-05-05 11:43:53 -05:00
|
|
|
|
2018-12-15 08:19:04 -06:00
|
|
|
block meta
|
2019-04-03 12:22:50 -05:00
|
|
|
meta(name='misskey:user-username' content=user.username)
|
|
|
|
meta(name='misskey:user-id' content=user.id)
|
|
|
|
meta(name='misskey:note-id' content=note.id)
|
|
|
|
|
2018-12-15 08:19:04 -06:00
|
|
|
meta(name='twitter:card' content='summary')
|
|
|
|
|
2019-04-28 19:11:57 -05:00
|
|
|
// todo
|
2019-05-13 12:50:23 -05:00
|
|
|
if user.host
|
|
|
|
meta(name='robots' content='noindex')
|
|
|
|
|
2018-12-15 17:49:38 -06:00
|
|
|
if user.twitter
|
|
|
|
meta(name='twitter:creator' content=`@${user.twitter.screenName}`)
|
|
|
|
|
2018-05-05 11:43:53 -05:00
|
|
|
if note.prev
|
2018-05-05 11:46:35 -05:00
|
|
|
link(rel='prev' href=`${config.url}/notes/${note.prev}`)
|
2018-05-05 11:43:53 -05:00
|
|
|
if note.next
|
2018-05-05 11:46:35 -05:00
|
|
|
link(rel='next' href=`${config.url}/notes/${note.next}`)
|
2018-09-07 05:22:14 -05:00
|
|
|
|
|
|
|
if !user.host
|
|
|
|
link(rel='alternate' href=url type='application/activity+json')
|
2019-03-15 19:54:40 -05:00
|
|
|
if note.uri
|
|
|
|
link(rel='alternate' href=note.uri type='application/activity+json')
|