-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (42 loc) · 1.46 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
<!-- ONLY USED DURING DEV -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="/src/devSite/assets/favicon.png"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Htmlgraphics bundler</title>
<link href="/src/devSite/assets/style.css" rel="stylesheet" />
<script defer type="module" src="/src/devSite/index.ts"></script>
<script defer type="module" src="/src/onInit.ts"></script>
<script defer type="module" src="/src/onRender.ts"></script>
</head>
<body>
<header>
<div id="header-right-container">
<div id="refresh-button">
<svg
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 24 24"
fill="currentColor"
>
<path
d="M19.91,15.51H15.38a1,1,0,0,0,0,2h2.4A8,8,0,0,1,4,12a1,1,0,0,0-2,0,10,10,0,0,0,16.88,7.23V21a1,1,0,0,0,2,0V16.5A1,1,0,0,0,19.91,15.51ZM12,2A10,10,0,0,0,5.12,4.77V3a1,1,0,0,0-2,0V7.5a1,1,0,0,0,1,1h4.5a1,1,0,0,0,0-2H6.22A8,8,0,0,1,20,12a1,1,0,0,0,2,0A10,10,0,0,0,12,2Z"
></path>
</svg>
</div>
<div id="theme-selector">
<div id="light-theme-button" class="dot light"></div>
<div id="dark-theme-button" class="dot dark"></div>
</div>
</div>
</header>
<div id="shadow-container"></div>
</body>
</html>