-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
73 lines (64 loc) · 2.23 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
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>Winampify</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Winampify is a Web Client for Spotify using Winamp 2 skins"
/>
<link
rel="stylesheet"
type="text/css"
href="<%= require('!file-loader?name=[path][name]-[hash].[ext]!./css/page.css') %>"
/>
<link
rel="shortcut icon"
sizes="16x16 32x32"
href="<%= require('./images/favicon.ico') %>"
/>
<link
href="https://fonts.googleapis.com/css?family=Open+Sans"
rel="stylesheet"
/>
<!-- See https://goo.gl/OOhYW5 -->
<!--
The manifest.json file is generated and injected by `webpack-pwa-manifest`
<link rel="manifest" href="./manifest.json">
-->
<!-- See https://goo.gl/qRE0vM -->
<meta name="theme-color" content="#4b4b4b" />
<!-- Add to homescreen for Chrome on Android. Fallback for manifest.json -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="application-name" content="Winamp" />
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<meta name="apple-mobile-web-app-title" content="Winamp" />
<!-- Tile icon for Windows 8 (144x144 + tile color) -->
<meta name="msapplication-TileColor" content="#4b4b4b" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- Load and register service worker that adds offline support -->
<script <script>
if ("serviceWorker" in navigator) {
window.addEventListener("load", function() {
navigator.serviceWorker.register("/service-worker.js");
});
}
</script>
</head>
<body>
<div id="app"></div>
<div id="browser-compatibility">
<p>Your browser does not support the features we need.</p>
<p>
Try using the most recent version of Chrome, Firefox, Safari or Edge.
</p>
</div>
<!-- Scripts get injected by html-webpack-plugin -->
</body>
</html>