allowances/templates/index.html

15 lines
317 B
HTML
Raw Normal View History

{{ define "title" }}Welcome{{ end }}
{{ define "content" }}
<div class="container pw">
2013-03-04 21:56:39 -08:00
This will have stuff {{ .children }}
<ul>
{{ range .children }}
<li>
{{ .Name }} {{ .Money }}
</li>
{{ end }}
</ul>
</div>
{{ end }}