-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 1.54 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="format-detection" content="telephone=no" />
<link
rel="shortcut icon"
type="image/svg+xml"
href="https://github.githubassets.com/favicons/favicon-dark.svg"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
/>
<title>Preact Template</title>
<meta property="og:title" content="Preact template" />
<meta property="og:site_name" content="Preact Template" />
<meta name="author" content="Brian Dombrowski" />
<link rel="canonical" href="https://preact-template.com" />
<meta property="og:locale" content="en_US" />
<link rel="manifest" href="/manifest.json" />
<meta name="theme-color" content="#333" />
<meta name="description" content="A template to build tiny Preact applications." />
<meta property="og:description" content="A template to build tiny Preact applications." />
<meta property="og:url" content="https://github.com/bdombro/preact-template" />
<meta property="og:image" content="https://preact-template.com/apple-touch-icon.png" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<style id="critical">
@media (prefers-color-scheme: dark) {
body {
background: #000;
color: #fff;
}
}
</style>
</head>
<body>
<div id="root"></div>
<noscript>Please enable JavaScript</noscript>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>