-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1 viewport-fit=cover">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="description" content="View descriptions for tracks on SoundCloud and save them for later.">
<link rel="manifest" href="/manifest.webmanifest">
<link rel="shortcut icon" href="/static/favicon.ico">
<link rel="apple-touch-icon" sizes="152x152" href="static/apple-touch-icon-152x152.png">
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap">
<title>New Tracks</title>
<link rel="stylesheet" href="/app.css">
</head>
<body>
<noscript>
<style>
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #aaa;
}
</style>
<h3 class="text-danger">JavaScript is required for this page to work properly. Please enable it!</h3>
</noscript>
<div id="new-tracks"></div>
<script type="module" src="/vue/index.js"></script>
</body>
</html>