2018-05-05 11:34:48 -05:00
|
|
|
block vars
|
|
|
|
|
2022-05-28 20:57:06 -05:00
|
|
|
block loadClientEntry
|
2022-12-19 22:05:36 -06:00
|
|
|
- const clientEntry = config.clientEntry;
|
2022-05-28 20:57:06 -05:00
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
doctype html
|
|
|
|
|
2022-05-28 20:57:06 -05:00
|
|
|
//
|
|
|
|
-
|
|
|
|
_____ _ _
|
|
|
|
| |_|___ ___| |_ ___ _ _
|
2022-06-10 00:56:05 -05:00
|
|
|
| | | | |_ -|_ -| '_| -_| | |
|
2022-05-28 20:57:06 -05:00
|
|
|
|_|_|_|_|___|___|_,_|___|_ |
|
|
|
|
|___|
|
|
|
|
Thank you for using Misskey!
|
|
|
|
If you are reading this message... how about joining the development?
|
|
|
|
https://github.com/misskey-dev/misskey
|
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-03-26 08:03:56 -05:00
|
|
|
html
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
head
|
|
|
|
meta(charset='utf-8')
|
2019-04-15 07:17:52 -05:00
|
|
|
meta(name='application-name' content='Misskey')
|
2017-03-17 10:02:41 -05:00
|
|
|
meta(name='referrer' content='origin')
|
2022-02-09 06:25:48 -06:00
|
|
|
meta(name='theme-color' content= themeColor || '#86b300')
|
|
|
|
meta(name='theme-color-orig' content= themeColor || '#86b300')
|
2022-02-02 09:51:41 -06:00
|
|
|
meta(property='twitter:card' content='summary')
|
2019-04-29 04:15:12 -05:00
|
|
|
meta(property='og:site_name' content= instanceName || 'Misskey')
|
2019-09-26 15:12:56 -05:00
|
|
|
meta(name='viewport' content='width=device-width, initial-scale=1')
|
2020-02-14 08:55:31 -06:00
|
|
|
link(rel='icon' href= icon || '/favicon.ico')
|
2019-09-26 15:12:56 -05:00
|
|
|
link(rel='apple-touch-icon' href= icon || '/apple-touch-icon.png')
|
2017-11-18 07:39:09 -06:00
|
|
|
link(rel='manifest' href='/manifest.json')
|
2023-01-06 08:00:54 -06:00
|
|
|
link(rel='search' type='application/opensearchdescription+xml' title=(title || "Misskey") href=`${url}/opensearch.xml`)
|
2020-03-23 05:06:46 -05: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-12-19 04:01:30 -06:00
|
|
|
link(rel='stylesheet' href='/assets/tabler-icons/tabler-icons.css')
|
2022-12-19 22:05:36 -06:00
|
|
|
link(rel='modulepreload' href=`/vite/${clientEntry.file}`)
|
|
|
|
|
|
|
|
if !config.clientManifestExists
|
|
|
|
script(type="module" src="/vite/@vite/client")
|
2022-05-28 20:58:54 -05:00
|
|
|
|
2022-12-14 02:32:52 -06:00
|
|
|
if Array.isArray(clientEntry.css)
|
|
|
|
each href in clientEntry.css
|
2022-12-19 22:05:36 -06:00
|
|
|
link(rel='stylesheet' href=`/vite/${href}`)
|
2022-05-28 20:57:06 -05:00
|
|
|
|
2018-05-05 11:34:48 -05:00
|
|
|
title
|
|
|
|
block title
|
2019-03-14 02:30:51 -05:00
|
|
|
= title || 'Misskey'
|
2018-05-05 11:34:48 -05:00
|
|
|
|
|
|
|
block desc
|
2021-04-20 09:26:17 -05:00
|
|
|
meta(name='description' content= desc || '✨🌎✨ A interplanetary communication platform ✨🚀✨')
|
2018-05-05 11:34:48 -05:00
|
|
|
|
|
|
|
block meta
|
2017-05-17 15:06:55 -05:00
|
|
|
|
2018-12-15 08:19:04 -06:00
|
|
|
block og
|
2022-02-02 09:51:41 -06: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 08:19:04 -06:00
|
|
|
|
2020-12-25 19:01:32 -06:00
|
|
|
style
|
|
|
|
include ../style.css
|
2020-10-17 06:12:00 -05:00
|
|
|
|
2022-05-01 08:51:07 -05:00
|
|
|
script.
|
|
|
|
var VERSION = "#{version}";
|
2022-05-28 20:57:06 -05:00
|
|
|
var CLIENT_ENTRY = "#{clientEntry.file}";
|
2022-05-01 08:51:07 -05:00
|
|
|
|
2020-12-25 19:01:32 -06:00
|
|
|
script
|
|
|
|
include ../boot.js
|
2020-02-14 17:29:59 -06:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
body
|
2017-03-25 16:58:29 -05:00
|
|
|
noscript: p
|
|
|
|
| JavaScriptを有効にしてください
|
|
|
|
br
|
2017-12-07 08:48:46 -06:00
|
|
|
| Please turn on your JavaScript
|
2021-03-04 22:51:22 -06:00
|
|
|
div#splash
|
2022-04-11 09:11:11 -05:00
|
|
|
img#splashIcon(src= icon || '/static-assets/splash.png')
|
|
|
|
div#splashSpinner
|
2022-05-19 01:24:35 -05:00
|
|
|
<svg class="spinner bg" viewBox="0 0 152 152" xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<g transform="matrix(1,0,0,1,12,12)">
|
|
|
|
<circle cx="64" cy="64" r="64" style="fill:none;stroke:currentColor;stroke-width:24px;"/>
|
|
|
|
</g>
|
|
|
|
</svg>
|
|
|
|
<svg class="spinner fg" viewBox="0 0 152 152" xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<g transform="matrix(1,0,0,1,12,12)">
|
|
|
|
<path d="M128,64C128,28.654 99.346,0 64,0C99.346,0 128,28.654 128,64Z" style="fill:none;stroke:currentColor;stroke-width:24px;"/>
|
|
|
|
</g>
|
|
|
|
</svg>
|
2019-07-17 10:11:39 -05:00
|
|
|
block content
|