blob: ecad4ce22bf54a1e4d3fe78c38abbcbd89127b85 (
plain) (
blame)
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
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ title }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
html, body {
height: 100%;
margin: 0;
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Arial, sans-serif;
background: #0f1220;
color: #e8eaf6;
}
.center {
min-height: 100%;
display: grid;
place-items: center;
text-align: center;
padding: 16px;
}
img {
max-width: 90vw;
height: auto;
display: block;
margin: 0 auto 12px;
}
h1 {
margin: 0;
font-size: clamp(1.5rem, 4vw, 2.5rem);
font-weight: 500;
}
</style>
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
</head>
<body>
<main class="center">
<div hx-get="/now_playing" hx-trigger="load, every 10s" hx-swap="innerHTML">
<img src="{{ image_url }}" alt="Cover">
</div>
<small><code>/stream /playlist.m3u</code></small>
</main>
</body>
</html>
|