-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
40 lines (38 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pokedex 5E</title>
<meta
name="description"
content="Fan made Pokedex for Pokemon 5e (5th Edition) Tabletop RPG ( Role-playing Game) unofficial adaptation."
/>
<meta
name="keywords"
content="Pokemon, Pokedex, 5E, Pokemon 5e, RPG, DND, Dungeons and Dragons, Monsters Manual, Tabletop, D&D, 5th Edition"
/>
<meta name="google-site-verification" content="o4Oq_1uYIMPbJ5nbsiaM-YOoO_SXzDSxDlPO5mpSCBU" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-RDET1M702M"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-RDET1M702M');
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
<script>
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark')
} else {
document.documentElement.classList.remove('dark')
}
</script>
</html>