forked from mirrors/hugo-tufte
26 lines
348 B
HTML
26 lines
348 B
HTML
|
{{ define "main" }}
|
||
|
|
||
|
<div id="layout">
|
||
|
<article>
|
||
|
|
||
|
{{ partial "brand.html" . }}
|
||
|
|
||
|
{{ partial "content.header.html" . }}
|
||
|
|
||
|
<section class="list-page">
|
||
|
<ul>
|
||
|
{{ range .Pages.ByTitle }}
|
||
|
{{ if .IsPage }}
|
||
|
<li><a href="{{ .RelPermalink }}">{{.Title}}</a></li>
|
||
|
{{ end }}
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
</section>
|
||
|
|
||
|
{{ partial "footer.html" . }}
|
||
|
|
||
|
</article>
|
||
|
</div>
|
||
|
|
||
|
{{ end }}
|