BAPSicle/templates/index.html
Matthew Stratford fc54058e7f Basic player
2020-10-23 21:10:32 +01:00

17 lines
384 B
HTML

<html>
<head>
<title>BAPSicle</title>
<meta http-equiv="refresh" content="2;url=/" />
</head>
<body>
{% if data %}
<code>
{% for player in data %}
{{player}} <a href="/player/{{player['channel']}}/play">Play</a> <a href="/player/{{player.channel}}/stop">Stop</a></a><br>
{% endfor %}
</code>
{% endif %}
</body>
</html>