0
0
Fork 0
This commit is contained in:
xeltica 2021-09-01 20:06:33 +09:00
parent 66ced29c6d
commit dbcfdcd0c3
41 changed files with 3637 additions and 791 deletions

31
src/views/frontend.pug Normal file
View file

@ -0,0 +1,31 @@
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
#app: .loading Loading...
script(src=`/assets/fe.${version}.js`)