This repository has been archived by the owner on Feb 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 82
/
index.template.html
154 lines (151 loc) · 4.75 KB
/
index.template.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<script>
window.twttr = (function(d, s, id) {
var js,
fjs = d.getElementsByTagName(s)[0],
t = window.twttr || {};
if (d.getElementById(id)) return t;
js = d.createElement(s);
js.id = id;
js.src = 'https://platform.twitter.com/widgets.js';
fjs.parentNode.insertBefore(js, fjs);
t._e = [];
t.ready = function(f) {
t._e.push(f);
};
return t;
})(document, 'script', 'twitter-wjs');
</script>
<script src="https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1"></script>
<meta charset="utf-8" />
<meta
name="description"
content="Ambient Generative Music by Alex Bainter"
/>
<meta name="author" content="Alex Bainter" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="application-name" content="Generative.fm" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Generative.fm" />
<meta
name="keywords"
content="generative music,alex bainter,generative.fm,generativefm"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="57x57"
href="<%= require('./src/icons/apple-touch-icon-57x57.png') %>"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="114x114"
href="<%= require('./src/icons/apple-touch-icon-114x114.png') %>"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="72x72"
href="<%= require('./src/icons/apple-touch-icon-72x72.png') %>"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="144x144"
href="<%= require('./src/icons/apple-touch-icon-144x144.png') %>"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="60x60"
href="<%= require('./src/icons/apple-touch-icon-60x60.png') %>"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="120x120"
href="<%= require('./src/icons/apple-touch-icon-120x120.png') %>"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="76x76"
href="<%= require('./src/icons/apple-touch-icon-76x76.png') %>"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="152x152"
href="<%= require('./src/icons/apple-touch-icon-152x152.png') %>"
/>
<link
rel="icon"
type="image/png"
href="<%= require('./src/icons/favicon-196x196.png') %>"
sizes="196x196"
/>
<link
rel="icon"
type="image/png"
href="<%= require('./src/icons/favicon-96x96.png') %>"
sizes="96x96"
/>
<link
rel="icon"
type="image/png"
href="<%= require('./src/icons/favicon-32x32.png') %>"
sizes="32x32"
/>
<link
rel="icon"
type="image/png"
href="<%= require('./src/icons/favicon-16x16.png') %>"
sizes="16x16"
/>
<link
rel="icon"
type="image/png"
href="<%= require('./src/icons/favicon-128.png') %>"
sizes="128x128"
/>
<link
rel="shortcut icon"
href="<%= require('./src/icons/favicon.ico') %>"
type="image/x-icon"
/>
<meta name="msapplication-TileColor" content="#1A1A1A" />
<meta name="msapplication-TileImage" content="icons/mstile-144x144.png" />
<meta
name="msapplication-square70x70logo"
content="<%= require('./src/icons/mstile-70x70.png') %>"
/>
<meta
name="msapplication-square150x150logo"
content="<%= require('./src/icons/mstile-150x150.png') %>"
/>
<meta
name="msapplication-wide310x150logo"
content="<%= require('./src/icons/mstile-310x150.png') %>"
/>
<meta
name="msapplication-square310x310logo"
content="<%= require('./src/icons/mstile-310x310.png') %>"
/>
<link rel="manifest" href="<%= require('./src/manifest.webmanifest') %>" />
<meta name="theme-color" content="#1A1A1A" />
<base href="/" />
<title>Generative.fm - Ambient Generative Music by Alex Bainter</title>
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
<!-- TODO: Preload this when more browsers support it -->
<link
href="https://fonts.googleapis.com/css?family=Roboto|Arimo"
rel="stylesheet"
/>
</head>
<body>
<div id="root">
<noscript
style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%)"
>JavaScript must be enabled.</noscript
>
</div>
</body>
</html>