This commit is contained in:
Beto
2024-02-27 22:15:14 -06:00
parent 06e223aba4
commit 3da32c8359
4 changed files with 45 additions and 0 deletions

10
layout.html Normal file
View File

@@ -0,0 +1,10 @@
<h1>{{.PageTitle}}</h1>
<ul>
{{range .Todos}}
{{if .Done}}
<li class="done">{{.Title}}</li>
{{else}}
<li>{{.Title}}</li>
{{end}}
{{end}}
</ul>