allowances/templates/index.html

15 lines
317 B
HTML

{{ define "title" }}Welcome{{ end }}
{{ define "content" }}
<div class="container pw">
This will have stuff {{ .children }}
<ul>
{{ range .children }}
<li>
{{ .Name }} {{ .Money }}
</li>
{{ end }}
</ul>
</div>
{{ end }}