-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (95 loc) · 3.39 KB
/
Copy pathindex.html
File metadata and controls
112 lines (95 loc) · 3.39 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1, shrink-to-fit=no' />
<link rel="icon" href="%VITE_BASE_URL%/meta/favicon.png" type='image/png' sizes="32x32">
<link rel="icon" href="%VITE_BASE_URL%/meta/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="%VITE_BASE_URL%/meta/apple-touch-icon.png">
<meta property="og:image" content='%VITE_BASE_URL%/meta/meta-image.png'>
<meta name="twitter:image" content='%VITE_BASE_URL%/meta/meta-image.png'>
<meta property='og:url' content='%VITE_BASE_URL%/'>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto+Mono:wght@400;500&family=Fira+Code:wght@300..700&display=swap"
rel="stylesheet">
<title>%VITE_APP_TITLE%</title>
<meta name='title' content='%VITE_APP_TITLE%'>
<meta name='description' content='%VITE_APP_DESCRIPTION%'>
<!-- GitHub Pages SPA redirect handler -->
<script>
// Decode the path encoded by 404.html and restore it via history.replaceState
// so BrowserRouter sees the original URL instead of the ?/ query string.
(function (l) {
if (l.search[1] === '/') {
var decoded = l.search
.slice(1)
.split('&')
.map(function (s) { return s.replace(/~and~/g, '&'); })
.join('?');
window.history.replaceState(
null,
null,
l.pathname.slice(0, -1) + decoded + l.hash
);
}
})(window.location);
</script>
<style>
#welcome-banner {
position: fixed;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background: #fff;
z-index: 100;
padding: 1rem;
transition: opacity 320ms ease-in-out;
pointer-events: none;
font-family: sans-serif !important;
text-align: center;
}
#welcome-banner p {
line-height: 1.5;
margin: 1rem 0 0 0;
}
#welcome-banner.dismissed {
opacity: 0;
}
</style>
</head>
<body>
<!-- Welcome banner gets hidden by React -->
<div id='welcome-banner'>
<img src="./app/media/layout/ds-logo-pos.svg" alt="Development Seed logotype" width="188" height="32" />
<p>In the beginning the Universe was created.</p>
<p>This has made a lot of people very angry and been widely regarded as a bad move.</p>
</div>
<div id='app-container'>
<!-- Content rendered here via React -->
</div>
<script>
// https://stackoverflow.com/a/9851769/728583
// internet explorer 6-11
var isIE = /*@cc_on!@*/ false || !!document.documentMode;
if (isIE) {
document.body.innerHTML =
'Unfortunately, your browser is not currently supported.<br />Recommended browsers: Edge, Firefox, Safari, Chrome';
}
</script>
<script>
// Fade the banner when the app signals readiness; no timeouts, no React DOM poking
addEventListener("app-ready", () => {
const el = document.getElementById("welcome-banner");
if (!el) return;
el.addEventListener("transitionend", () => el.remove(), { once: true });
el.classList.add("dismissed");
});
</script>
<!-- __APP_CONFIG__ -->
<script src="./app/main.tsx" type="module"></script>
</body>
</html>