-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathindex.html
92 lines (92 loc) · 2.55 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
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
<!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' https://plausible.io;
script-src 'self' https://plausible.io;
img-src 'self' https://plausible.io;
style-src 'self' 'unsafe-inline';
"
/>
<title>%VITE_HTML_TITLE%</title>
<meta name="og:title" content="%VITE_HTML_TITLE%" />
<link
rel="prefetch"
href="/locales/en.json"
as="fetch"
type="application/json"
crossorigin="anonymous"
/>
<link
rel="icon"
sizes="16x16"
href="/favicon-16.png?v=%VITE_ICON_VERSION%"
/>
<link
rel="icon"
sizes="32x32"
href="/favicon-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-regular-512.png?v=%VITE_ICON_VERSION%"
/>
<meta name="og:image:width" content="512" />
<meta name="og:image:height" content="512" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<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
async
defer
data-domain="pkmn.help"
src="https://plausible.io/js/plausible.js"
></script>
</head>
<body>
<div id="app">
<div class="fallback-content">
<h1>%VITE_HTML_TITLE%</h1>
<p>
A Pokémon type calculator to show strengths/weaknesses of different
type combinations.
</p>
<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</a>
</footer>
</div>
</div>
</body>
</html>