-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (42 loc) · 1.86 KB
/
index.html
File metadata and controls
49 lines (42 loc) · 1.86 KB
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
<!doctype html>
<html lang="en" class="h-100">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>%VITE_TITLE%</title>
<meta name="author" content="Shane" />
<meta name="title" content="%VITE_TITLE%" />
<meta name="description" content="%VITE_DESCRIPTION%" />
<link rel="icon" type="image/png" href="/src/assets/logo.png" />
<link rel="apple-touch-icon" href="/src/assets/logo.png" />
<link rel="icon" href="/favicon.ico" />
<meta property="og:type" content="website" />
<meta property="og:title" content="%VITE_TITLE%" />
<meta property="og:site_name" content="%VITE_SUBTITLE%" />
<meta property="og:description" content="%VITE_DESCRIPTION%" />
<meta property="og:image" content="/src/assets/logo.png" />
<meta property="og:image:alt" content="%VITE_TITLE%" />
<!--<meta property="twitter:card" content="summary" />-->
<!--<meta property="twitter:title" content="%VITE_TITLE%" />-->
<!--<meta property="twitter:site" content="%VITE_SUBTITLE%" />-->
<!--<meta property="twitter:description" content="%VITE_DESCRIPTION%" />-->
<!--<meta property="twitter:image" content="/src/assets/logo.png" />-->
<!--<meta property="twitter:image:alt" content="%VITE_TITLE%" />-->
<meta name="darkreader-lock" />
<script src="/theme.js"></script>
</head>
<body class="d-flex flex-column h-100">
<div id="app" class="d-flex h-100 flex-column"></div>
<script>
;(function () {
const redirect = sessionStorage.redirect
delete sessionStorage.redirect
if (redirect && redirect !== location.href) {
console.log("index - history.replaceState:", redirect)
history.replaceState(null, null, redirect)
}
})()
</script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>