-
Notifications
You must be signed in to change notification settings - Fork 31
/
index.html
27 lines (27 loc) · 917 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<!-- {{ }} is posthtml-expressions syntax -->
<html lang="{{ lang }}">
<head>
<meta charset="utf-8" />
<title>{{ title }}</title>
<each loop="v, k in meta">
<meta property="{{ k }}" content="{{ v }}">
</each>
<link rel="stylesheet" href="./src/css/style.scss">
<link rel="icon" type="image/svg+xml" href="/static/img/mirrorz.svg">
<!-- <link rel="preload" as="stylesheet" href="./src/css/deferred.scss"> -->
<script type="module" src="./src/index.jsx"></script>
</head>
<body>
<style>
.loading {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
</style>
<noscript>{{ javascript }}<br/>{{ legacy_page_prompt_pre }}<a href="/_/">{{ legacy_page }}</a>{{ legacy_page_prompt_post }}</noscript>
<div id="app"><div class="loading">{{ loading }}</div></div>
</body>
</html>