obol

[root]/ example-site / templates / home.html

215B

raw
{{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"}}