mini-player: wip implementation

This commit is contained in:
Agahnim 2026-03-20 13:48:15 +01:00
parent 1d568e79d4
commit b4f861e79b
Signed by: Agahnim
SSH key fingerprint: SHA256:Zj65PJnE0dRYye8Ltk/qDglynyXUxJngQ9qqx/VI+b4
7 changed files with 55 additions and 6 deletions

View file

@ -7,6 +7,17 @@
<p>{{ track.title }} - {{ track.artist }}</p>
<audio controls src="{{ track.src }}"></audio>
</div>
<controls>
<state>
<img src="/static/assets/svgs/skip-back.svg" width="12" height="12" />
<img src="/static/assets/svgs/play.svg" width="12" height="12" />
<img src="/static/assets/svgs/skip-forward.svg" width="12" height="12" />
</state>
<volume>
<img src="/static/assets/svgs/volume-2.svg" width="12" height="12" />
<input type="range" min="0" max="1" step="0.01" />
</volume>
</controls>
{% endfor %}
{% endif %}
</miniplayer>