53 lines
1.3 KiB
HTML
53 lines
1.3 KiB
HTML
{# #}
|
|
<!DOCTYPE html>
|
|
<script>
|
|
{% if let Some(name) = name %}
|
|
document.title = "{{ name }} - Empede";
|
|
{% else %}
|
|
document.title = "Empede";
|
|
{% endif %}
|
|
</script>
|
|
<div class="nowplaying">
|
|
<div class="current">
|
|
{% if let Some(song) = song %}
|
|
<div class="albumart">
|
|
<a href="/art?path={{ song.file }}" target="_blank">
|
|
<img src="/art?path={{ song.file }}" onerror="this.style.opacity = 0">
|
|
</a>
|
|
</div>
|
|
|
|
<div class="metadata">
|
|
{% if let Some(name) = name %}
|
|
<div class="song__name">{{ name }}</div>
|
|
{% endif %}
|
|
{% if let Some(artist) = song.artist %}
|
|
<div>{{ artist }}</div>
|
|
{% endif %}
|
|
</div>
|
|
{% else %}
|
|
<div class="metadata idle">
|
|
Nothing playing right now
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="controls">
|
|
<span
|
|
hx-post="/previous" hx-swap="none"
|
|
class="control material-symbols-outlined" role="button"
|
|
>skip_previous</span>
|
|
<span
|
|
hx-post="/play" hx-swap="none"
|
|
class="control material-symbols-outlined" role="button"
|
|
>play_arrow</span>
|
|
<span
|
|
hx-post="/pause" hx-swap="none"
|
|
class="control material-symbols-outlined" role="button"
|
|
>pause</span>
|
|
<span
|
|
hx-post="/next" hx-swap="none"
|
|
class="control material-symbols-outlined" role="button"
|
|
>skip_next</span>
|
|
</div>
|
|
</div>
|