2018-05-05 18:34:48 +02:00
|
|
|
block vars
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
doctype html
|
|
|
|
|
2021-08-10 08:28:01 +02:00
|
|
|
!= '<!--\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'
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-26 15:03:56 +02:00
|
|
|
html
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
head
|
|
|
|
meta(charset='utf-8')
|
2019-04-15 14:17:52 +02:00
|
|
|
meta(name='application-name' content='Misskey')
|
2017-03-17 16:02:41 +01:00
|
|
|
meta(name='referrer' content='origin')
|
2022-02-09 13:25:48 +01:00
|
|
|
meta(name='theme-color' content= themeColor || '#86b300')
|
|
|
|
meta(name='theme-color-orig' content= themeColor || '#86b300')
|
2022-02-02 16:51:41 +01:00
|
|
|
meta(property='twitter:card' content='summary')
|
2019-04-29 11:15:12 +02:00
|
|
|
meta(property='og:site_name' content= instanceName || 'Misskey')
|
2019-09-26 22:12:56 +02:00
|
|
|
meta(name='viewport' content='width=device-width, initial-scale=1')
|
2020-02-14 15:55:31 +01:00
|
|
|
link(rel='icon' href= icon || '/favicon.ico')
|
2019-09-26 22:12:56 +02:00
|
|
|
link(rel='apple-touch-icon' href= icon || '/apple-touch-icon.png')
|
2017-11-18 14:39:09 +01:00
|
|
|
link(rel='manifest' href='/manifest.json')
|
2020-03-23 11:06:46 +01:00
|
|
|
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')
|
2022-02-09 05:23:29 +01:00
|
|
|
link(rel='preload' href='/assets/fontawesome/css/all.css' as='style')
|
|
|
|
link(rel='stylesheet' href='/assets/fontawesome/css/all.css')
|
2017-05-17 22:06:55 +02:00
|
|
|
|
2018-05-05 18:34:48 +02:00
|
|
|
title
|
|
|
|
block title
|
2019-03-14 08:30:51 +01:00
|
|
|
= title || 'Misskey'
|
2018-05-05 18:34:48 +02:00
|
|
|
|
|
|
|
block desc
|
2021-04-20 16:26:17 +02:00
|
|
|
meta(name='description' content= desc || '✨🌎✨ A interplanetary communication platform ✨🚀✨')
|
2018-05-05 18:34:48 +02:00
|
|
|
|
|
|
|
block meta
|
2017-05-17 22:06:55 +02:00
|
|
|
|
2018-12-15 15:19:04 +01:00
|
|
|
block og
|
2022-02-02 16:51:41 +01:00
|
|
|
meta(property='og:title' content= title || 'Misskey')
|
|
|
|
meta(property='og:description' content= desc || '✨🌎✨ A interplanetary communication platform ✨🚀✨')
|
|
|
|
meta(property='og:image' content= img)
|
2018-12-15 15:19:04 +01:00
|
|
|
|
2020-12-26 02:01:32 +01:00
|
|
|
style
|
|
|
|
include ../style.css
|
2020-10-17 13:12:00 +02:00
|
|
|
|
2020-12-26 02:01:32 +01:00
|
|
|
script
|
|
|
|
include ../boot.js
|
2020-02-15 00:29:59 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
body
|
2017-03-25 22:58:29 +01:00
|
|
|
noscript: p
|
|
|
|
| JavaScriptを有効にしてください
|
|
|
|
br
|
2017-12-07 15:48:46 +01:00
|
|
|
| Please turn on your JavaScript
|
2021-03-05 05:51:22 +01:00
|
|
|
div#splash
|
|
|
|
img(src='/favicon.ico')
|
2019-07-17 17:11:39 +02:00
|
|
|
block content
|