mirror of
https://github.com/paricafe/misskey.git
synced 2025-01-10 15:30:49 -06:00
0226a670dd
* enhance(OGP): ユーザーやノートのOGPでローカルとリモートユーザーの見分けが付かない問題を修正 (MisskeyIO#528) (cherry picked from commit 0c3de462d99c47297bebc162581bac6f78f21b49) * Update Changelog --------- Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com>
43 lines
1.4 KiB
Text
43 lines
1.4 KiB
Text
extends ./base
|
|
|
|
block vars
|
|
- const title = user.name ? `${user.name} (@${user.username}${user.host ? `@${user.host}` : ''})` : `@${user.username}${user.host ? `@${user.host}` : ''}`;
|
|
- const url = `${config.url}/@${(user.host ? `${user.username}@${user.host}` : user.username)}`;
|
|
|
|
block title
|
|
= `${title} | ${instanceName}`
|
|
|
|
block desc
|
|
meta(name='description' content= profile.description)
|
|
|
|
block og
|
|
meta(property='og:type' content='blog')
|
|
meta(property='og:title' content= title)
|
|
meta(property='og:description' content= profile.description)
|
|
meta(property='og:url' content= url)
|
|
meta(property='og:image' content= avatarUrl)
|
|
meta(property='twitter:card' content='summary')
|
|
|
|
block meta
|
|
if user.host || profile.noCrawle
|
|
meta(name='robots' content='noindex')
|
|
if profile.preventAiLearning
|
|
meta(name='robots' content='noimageai')
|
|
meta(name='robots' content='noai')
|
|
|
|
meta(name='misskey:user-username' content=user.username)
|
|
meta(name='misskey:user-id' content=user.id)
|
|
|
|
if profile.twitter
|
|
meta(name='twitter:creator' content=`@${profile.twitter.screenName}`)
|
|
|
|
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')
|
|
|
|
each m in me
|
|
link(rel='me' href=`${m}`)
|