obol
example-site/templates/home.html
{{define "content"}}
<h2>{{page.title}}</h2>
{{if page.published}}
<ul>
{{range page.items}}
<li>{{name}}</li>
{{end}}
</ul>
{{else}}
<p>Not published.</p>
{{end}}
{{end}}
{{template "layout"}}