Scorch/templates/index.html

22 lines
610 B
HTML
Raw Normal View History

2020-05-07 15:31:49 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>Scorch</title>
<link rel="stylesheet" type="text/css" href="/static/scorch.css">
2020-05-11 12:41:26 -04:00
<script>const ws_uri = "{{ url('ws') }}";</script>
2020-05-07 15:31:49 -04:00
<script type="text/javascript" src="/static/scorch.js"></script>
2020-05-11 12:41:26 -04:00
<script>window.onload = load;</script>
2020-05-07 15:31:49 -04:00
<meta name="viewport" content="width=device-width, initial-scale=0.8">
<meta name="description" content="A music streaming service.">
</head>
<body>
<header>
<h1>Scorch</h1>
</header>
<main>
2020-05-11 12:41:26 -04:00
<button onclick="socket.send('test')">Test</button>
<audio controls></audio>
2020-05-07 15:31:49 -04:00
</main>
</body>
</html>