-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
55 lines (46 loc) · 1.27 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>DocsApp</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
{{content-for "head"}}
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2.0.6/css/pico.min.css"
/>
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/vendor.css" />
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/docs-app.css" />
{{content-for "head-footer"}}
<style>
#kolay__loading {
position: fixed;
inset: 0;
background: #111;
color: white;
font-size: 4rem;
z-index: 10;
font-family: "System UI", "System";
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 4rem;
[aria-busy="true"] {
background: #111;
}
}
</style>
</head>
<body>
{{content-for "body"}}
<script src="{{rootURL}}assets/vendor.js"></script>
<script src="{{rootURL}}assets/docs-app.js"></script>
<div id="kolay__loading">
Kolay
<article aria-busy="true"></article>
</div>
{{content-for "body-footer"}}
</body>
</html>