31 lines
972 B
Text
31 lines
972 B
Text
doctype html
|
||
html
|
||
head
|
||
meta(charset="UTF-8")
|
||
meta(name="viewport", content="width=device-width, initial-scale=1.0")
|
||
block meta
|
||
- const title = 'みす廃アラート'
|
||
- const desc = '✨Misskey での1日のノート数、フォロー数、フォロワー数をカウントし、深夜0時にお知らせする便利サービスです。';
|
||
title= title
|
||
meta(name='description' content=desc)
|
||
meta(property='og:title' content=title)
|
||
meta(property='og:description' content=desc)
|
||
meta(property='og:type' content='website')
|
||
meta(name='twitter:card' content='summary')
|
||
meta(name='twitter:site' content='@Xeltica')
|
||
meta(name='twitter:creator' content='@Xeltica')
|
||
style.
|
||
.loading {
|
||
display: flex;
|
||
position: fixed;
|
||
inset: 0;
|
||
background: #222;
|
||
color: #fff;
|
||
font-size: 16px;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
body.dark
|
||
#app: .loading Loading...
|
||
|
||
script(src=`/assets/fe.${version}.js` async defer)
|