mirror of
https://github.com/danbee/mpd-client
synced 2025-03-04 08:39:09 +00:00
11 lines
320 B
Plaintext
11 lines
320 B
Plaintext
<nav>
|
|
<button data-command="previous">previous</button>
|
|
<% if (status.attr('state') == 'play') { %>
|
|
<button data-command="pause">pause</button>
|
|
<% } else { %>
|
|
<button data-command="play">play</button>
|
|
<% } %>
|
|
<button data-command="stop">stop</button>
|
|
<button data-command="next">next</button>
|
|
</nav>
|