-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (61 loc) · 2.33 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
<!doctype html>
<html lang="en">
<head>
<link href="/output.css" rel="stylesheet">
<!-- HTML Meta Tags -->
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hidden Gems</title>
<link rel="alternate" hreflang="en" href="http://pgrad.github.io/HiddenGems/index.html" />
<link rel="alternate" hreflang="es" href="http://pgrad.github.io/HiddenGems/es/index.html" />
<meta
name="description"
content="Make old artists new again!"
/>
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://pgrad.github.io/HiddenGems" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Hidden Gems" />
<meta
property="og:description"
content="Find new music from your favorite artists!"
/>
<meta
property="og:image"
content="https://pgrad.github.io/HiddenGems/hidden_gems_thumbnail.png"
/>
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="pgrad.github.io" />
<meta property="twitter:url" content="https://pgrad.github.io/HiddenGems" />
<meta name="twitter:title" content="Hidden Gems" />
<meta
name="twitter:description"
content="Find new music from your favorite artists!"
/>
<meta
name="twitter:image"
content="https://pgrad.github.io/HiddenGems/hidden_gems_thumbnail.png"
/>
<!-- Meta Tags Generated via https://www.opengraph.xyz -->
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="/manifest.json">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<script src="https://open.spotify.com/embed-podcast/iframe-api/v1" async></script>
<script>
// Add the PWA service worker here.
if (!navigator.serviceWorker.controller) {
navigator.serviceWorker.register("/sw.js").then(function(reg) {
console.log("Service worker has been registered for scope: " + reg.scope);
});
}
</script>
</body>
</html>