mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 14:43:09 +02:00
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>
63 lines
2 KiB
Text
63 lines
2 KiB
Text
block vars
|
|
|
|
doctype html
|
|
|
|
!= '<!--\n'
|
|
!= ' _____ _ _ \n'
|
|
!= ' | |_|___ ___| |_ ___ _ _ \n'
|
|
!= ' | | | | |_ -|_ -| \'_| -_| | |\n'
|
|
!= ' |_|_|_|_|___|___|_,_|___|_ |\n'
|
|
!= ' |___|\n'
|
|
!= ' Thank you for using Misskey!\n'
|
|
!= ' If you are reading this message... how about joining the development?\n'
|
|
!= ' https://github.com/misskey-dev/misskey'
|
|
!= '\n-->\n'
|
|
|
|
html
|
|
|
|
head
|
|
meta(charset='utf-8')
|
|
meta(name='application-name' content='Misskey')
|
|
meta(name='referrer' content='origin')
|
|
meta(name='theme-color' content='#86b300')
|
|
meta(name='theme-color-orig' content='#86b300')
|
|
meta(property='twitter:card' content='summary')
|
|
meta(property='og:site_name' content= instanceName || 'Misskey')
|
|
meta(name='viewport' content='width=device-width, initial-scale=1')
|
|
link(rel='icon' href= icon || '/favicon.ico')
|
|
link(rel='apple-touch-icon' href= icon || '/apple-touch-icon.png')
|
|
link(rel='manifest' href='/manifest.json')
|
|
link(rel='prefetch' href='https://xn--931a.moe/assets/info.jpg')
|
|
link(rel='prefetch' href='https://xn--931a.moe/assets/not-found.jpg')
|
|
link(rel='prefetch' href='https://xn--931a.moe/assets/error.jpg')
|
|
link(rel='preload' href='https://use.fontawesome.com/releases/v5.15.3/css/all.css' as='style')
|
|
link(rel='stylesheet' href='https://use.fontawesome.com/releases/v5.15.3/css/all.css')
|
|
|
|
title
|
|
block title
|
|
= title || 'Misskey'
|
|
|
|
block desc
|
|
meta(name='description' content= desc || '✨🌎✨ A interplanetary communication platform ✨🚀✨')
|
|
|
|
block meta
|
|
|
|
block og
|
|
meta(property='og:title' content= title || 'Misskey')
|
|
meta(property='og:description' content= desc || '✨🌎✨ A interplanetary communication platform ✨🚀✨')
|
|
meta(property='og:image' content= img)
|
|
|
|
style
|
|
include ../style.css
|
|
|
|
script
|
|
include ../boot.js
|
|
|
|
body
|
|
noscript: p
|
|
| JavaScriptを有効にしてください
|
|
br
|
|
| Please turn on your JavaScript
|
|
div#splash
|
|
img(src='/favicon.ico')
|
|
block content
|