-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.5 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.5 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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<!--
https://developer.chrome.com/docs/lighthouse/pwa/apple-touch-icon/?utm_source=lighthouse&utm_medium=devtools
https://developer.chrome.com/docs/lighthouse/pwa/themed-omnibox/?utm_source=lighthouse&utm_medium=devtools
https://developer.chrome.com/blog/support-for-theme-color-in-chrome-39-for-android/
-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Track every single evolutive stage of your pokémons in a smart and easy way!" />
<meta property="og:title" content="LivingDex - Track your pokémons!">
<meta property="og:description" content="Track every single evolutive stage of your pokémons in a smart and easy way!">
<meta property="og:url" content="https://livingdex.web.app">
<meta property="og:image" content="https://livingdex.web.app/favicon.ico">
<meta property="og:type" content="website">
<meta property="og:site_name" content="LivingDex Tracker">
<title>LivingDex Tracker</title>
<script is:inline>
const isDark = localStorage.getItem("theme") === 'dark' ||
(!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)
document.documentElement.setAttribute('data-theme', isDark ? 'dark' : 'light')
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>