MaCH repo

This commit is contained in:
2025-07-24 12:46:01 -05:00
committed by Nick Ricketts
commit 1ab3b1c5ff
106 changed files with 6345 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{{< layout}}
{{$body}}
<form action="/todos" method="post">
<input type="text" name="title" placeholder="new todo" required>
<button type="submit">add</button>
</form>
{{^todos}}
<p>no todos</p>
{{/todos}}
{{#todos}}
{{#.}}
{{> todo}}
{{/.}}
{{/todos}}
{{/body}}
{{/layout}}