-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
56 lines (44 loc) · 1.57 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title>Spotify Stations</title>
<meta name="description" content="Spotify Stations">
<!-- See https://goo.gl/OOhYW5 -->
<link rel="manifest" href="/manifest.json">
<script src="/bower_components/webcomponentsjs/webcomponents-loader.js"></script>
<link rel="import" href="/src/spotify-stations-app.html">
<link rel="icon" type="image/png" href="images/favicon.png" sizes="32x32" />
<meta name="theme-color" content="#201459">
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function () {
navigator.serviceWorker.register('/service-worker.js');
});
}
</script>
<style>
html, body {
background-color: black;
display: flex;
justify-content: center;
margin: 0;
height: 100%;
overflow: hidden;
-webkit-overflow-scrolling: touch;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
</style>
</head>
<body>
<spotify-stations-app></spotify-stations-app>
</body>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-57741199-10"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-57741199-10');
</script>
</html>