8485559318
* Fix Twitter embed * Update packages/backend/src/server/web/views/gallery-post.pug Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com> * Update packages/backend/src/server/web/views/channel.pug Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com> * Update packages/backend/src/server/web/views/base.pug Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com> * Update packages/backend/src/server/web/views/base.pug Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com> * Update packages/backend/src/server/web/views/clip.pug Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com> * Update packages/backend/src/server/web/views/channel.pug Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com> * Update packages/backend/src/server/web/views/note.pug Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com> * Update packages/backend/src/server/web/views/gallery-post.pug Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com> * Update packages/backend/src/server/web/views/page.pug Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com> * Update packages/backend/src/server/web/views/user.pug Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com> * Update packages/backend/src/server/web/views/page.pug Co-authored-by: rinsuki <428rinsuki+git@gmail.com> * Yay! * Update packages/backend/src/server/web/views/base.pug Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com> * Update packages/backend/src/server/web/views/base.pug Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com> * Update packages/backend/src/server/web/views/base.pug Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com> * Update page.pug * Update channel.pug * Update gallery-post.pug * Update note.pug * Update page.pug * Update user.pug Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com> Co-authored-by: rinsuki <428rinsuki+git@gmail.com>
34 lines
895 B
Plaintext
34 lines
895 B
Plaintext
extends ./base
|
|
|
|
block vars
|
|
- const user = post.user;
|
|
- const title = post.title;
|
|
- const url = `${config.url}/gallery/${post.id}`;
|
|
|
|
block title
|
|
= `${title} | ${instanceName}`
|
|
|
|
block desc
|
|
meta(name='description' content= post.description)
|
|
|
|
block og
|
|
meta(property='og:type' content='article')
|
|
meta(property='og:title' content= title)
|
|
meta(property='og:description' content= post.description)
|
|
meta(property='og:url' content= url)
|
|
meta(property='og:image' content= post.files[0].thumbnailUrl)
|
|
|
|
block meta
|
|
if user.host || profile.noCrawle
|
|
meta(name='robots' content='noindex')
|
|
|
|
meta(name='misskey:user-username' content=user.username)
|
|
meta(name='misskey:user-id' content=user.id)
|
|
|
|
// todo
|
|
if user.twitter
|
|
meta(name='twitter:creator' content=`@${user.twitter.screenName}`)
|
|
|
|
if !user.host
|
|
link(rel='alternate' href=url type='application/activity+json')
|