obol

Owner: IIIlllIIIllI URL: git@git.0x00nyx.xyz:seb/obolserver.git

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