soundboard/templates/index.html
2023-07-19 01:20:13 +02:00

23 lines
435 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Play</title>
<script>
function play(hash) {
fetch("/play/" + hash);
}
function stop() {
fetch("/stop");
}
</script>
</head>
<body>
{% for clip in clips %}
<button onclick="play('{{clip.hash}}')">{{clip.file_name}}</button><br />
{% endfor %}
<button onclick="stop()">Stop.</button>
</body>
</html>