-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (93 loc) · 2.69 KB
/
index.html
File metadata and controls
93 lines (93 loc) · 2.69 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
<!DOCTYPE html>
<html lang="en" dir="ltr" data-theme="auto">
<head>
<meta charset="UTF-8" />
<meta
http-equiv="content-security-policy"
content="default-src 'self'; script-src 'self'; img-src 'self'; style-src 'self' 'unsafe-inline';"
/>
<title>%VITE_HTML_TITLE% – %VITE_HTML_DESCRIPTION%</title>
<meta name="og:title" content="%VITE_HTML_TITLE% - %VITE_HTML_DESCRIPTION%" />
<meta name="theme-color" content="" />
<link
rel="prefetch"
href="/locales/en.json"
as="fetch"
type="application/json"
crossorigin="anonymous"
/>
<link
rel="icon"
sizes="16x16"
href="/app-icon-regular-16.png?v=%VITE_ICON_VERSION%"
/>
<link
rel="icon"
sizes="32x32"
href="/app-icon-regular-32.png?v=%VITE_ICON_VERSION%"
/>
<link
rel="icon"
sizes="180x180"
href="/app-icon-regular-180.png?v=%VITE_ICON_VERSION%"
/>
<link
rel="icon"
sizes="192x192"
href="/app-icon-regular-192.png?v=%VITE_ICON_VERSION%"
/>
<link
rel="icon"
sizes="512x512"
href="/app-icon-regular-512.png?v=%VITE_ICON_VERSION%"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/app-icon-maskable-180.png?v=%VITE_ICON_VERSION%"
/>
<meta
name="og:image"
content="https://www.pkmn.help/app-icon-maskable-512.png?v=%VITE_ICON_VERSION%"
/>
<meta name="og:image:width" content="512" />
<meta name="og:image:height" content="512" />
<!-- Chrome edge-to-edge "chin" support -->
<!-- https://developer.chrome.com/docs/css-ui/edge-to-edge -->
<meta
name="viewport"
content="width=device-width, initial-scale=1, viewport-fit=cover"
/>
<meta name="description" content="%VITE_HTML_DESCRIPTION%" />
<meta name="og:description" content="%VITE_HTML_DESCRIPTION%" />
<link rel="stylesheet" href="/src/style/index.css" />
<script type="module" src="/src/main.tsx"></script>
<script
defer
data-domain="pkmn.help"
data-api="/p/api/event"
src="/p/js/script.js"
vite-ignore
></script>
</head>
<body>
<div id="app">
<div class="fallback-content">
<hgroup>
<h1>%VITE_HTML_TITLE%</h1>
<p><small>%VITE_HTML_DESCRIPTION%</small></p>
</hgroup>
<p>This app requires JavaScript. Make sure you have it enabled.</p>
<p>
Email
<a href="mailto:pkmn@wavebeem.com">pkmn@wavebeem.com</a>
if you have difficulty loading the site.
</p>
<footer>
©
<a href="https://www.wavebeem.com/">Sage Fennel Mock</a>
</footer>
</div>
</div>
</body>
</html>