empede/templates/index.html

51 lines
1.4 KiB
HTML
Raw Normal View History

2023-04-25 01:26:27 +00:00
{# Template #}
<!DOCTYPE html>
2023-05-02 00:01:30 +00:00
<html lang="en">
2023-04-25 01:26:27 +00:00
<head>
<title>Empede</title>
<!-- Empede version: {{ crate_version!() }} -->
2023-04-27 12:21:43 +00:00
<!-- Source: https://github.com/bigskysoftware/htmx -->
<script src="/static/vendor/htmx.min.js"></script>
<script src="/static/vendor/htmx-sse.js"></script>
2023-05-01 22:35:31 +00:00
<!-- Source: https://github.com/SortableJS/Sortable -->
<script src="/static/vendor/Sortable.min.js"></script>
2023-04-27 12:07:35 +00:00
<link rel="stylesheet" href="/static/style.css">
<link href="/static/favicon.png" rel="icon" type="image/png">
<script>
let progressBar;
let elapsed;
let duration;
let progressInterval;
</script>
2023-04-25 01:26:27 +00:00
</head>
<body hx-ext="sse" sse-connect="/sse">
<div
class="browser"
hx-trigger="load,sse:database"
hx-get="/browser"
hx-vals="js:{path: new URLSearchParams(window.location.search).get('path') || ''}"
></div>
2023-04-25 14:32:51 +00:00
<div class="player">
2023-05-07 00:51:34 +00:00
<div class="nowplaying" hx-trigger="sse:player" hx-get="/player"></div>
<div class="queue-header">
<div class="queue-next">Next in queue</div>
<button class="queue-clear" hx-delete="/queue" hx-swap="none">
<span class="material-symbols-outlined">playlist_remove</span>
Clear
</button>
</div>
<div class="queue" hx-trigger="sse:playlist,sse:player" hx-get="/queue"></div>
2023-04-25 14:32:51 +00:00
</div>
2023-04-25 01:26:27 +00:00
</body>
</html>