charcuterie/views/index.hbs

21 lines
339 B
Handlebars

<html>
<head>
<title>Charcuterie</title>
</head>
<body>
A sound board for Meet, get it?
{{#each sounds}}
<form action="/play/{{this}}" method="POST">
<input type="submit" value="{{this}}"/>
</form>
{{/each}}
</body>
</html>
<!--
vim: ft=html
-->