Files
mach_examples/05_todo_sse_datastar/todos.mustache.html
2026-04-24 00:09:02 -05:00

22 lines
561 B
HTML

{{< layout}}
{{$head}}
{{> datastar_script }}
{{/head}}
{{$body}}
<input type="text" placeholder="new todo" data-bind:title
data-on:keydown="evt.key === 'Enter' && @post('{{utl:todos}}') && ($title = '');"
>
<button data-on:click="@post('{{url:todos}}') && ($title = '')">add</button>
<div id="todos" data-init="@get('{{url:todos}}?http_method=sse')">
{{^todos}}
<p>no todos</p>
{{/todos}}
{{#todos}}
{{#.}}
{{> todo}}
{{/.}}
{{/todos}}
</div>
{{/body}}
{{/layout}}