2013-02-20 21:11:44 -08:00
|
|
|
{{ define "title" }}Welcome{{ end }}
|
|
|
|
|
|
|
|
{{ define "content" }}
|
2013-02-20 21:27:09 -08:00
|
|
|
<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>
|
2013-02-20 21:27:09 -08:00
|
|
|
</div>
|
2013-02-20 21:11:44 -08:00
|
|
|
{{ end }}
|