{{ define "main" }}

<div id="layout">
<article>

{{ partial "brand.html" . }}

{{ partial "content.header.html" . }}

{{ with .Content }}
<section>
{{ . }}
</section>
{{ end }}

<section class="list-page">
<ul>
{{ range .Pages.ByTitle }}
{{ if .IsPage }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}{{- if .Draft -}} :: Draft {{- end -}}</a></li>
{{ end }}
{{ end }}
</ul>
</section>

{{ partial "footer.html" . }}

</article>
</div>

{{ end }}