mirror of
https://github.com/loikein/hugo-tufte.git
synced 2024-11-14 20:36:58 +01:00
44 lines
696 B
HTML
44 lines
696 B
HTML
{{ define "main" }}
|
|
|
|
<div id="layout">
|
|
<article>
|
|
|
|
{{ partial "content.header.html" . }}
|
|
|
|
{{ with .Content }}
|
|
<section>
|
|
{{ . }}
|
|
</section>
|
|
{{ end }}
|
|
|
|
<section class="list-page">
|
|
|
|
<!-- preambles -->
|
|
|
|
{{- if .RegularPages -}}
|
|
<ul>
|
|
{{ range .RegularPages.ByTitle }}
|
|
<li><a href="{{ .RelPermalink }}">{{ .Title }}{{- if .Draft -}} :: Draft{{- end -}}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
{{- end -}}
|
|
|
|
<!-- sub categories -->
|
|
|
|
{{- if .Sections -}}
|
|
<ul>
|
|
{{ range .Sections.ByTitle }}
|
|
<li><a href="{{ .RelPermalink }}">{{ .Title }}{{- if .Draft -}} :: Draft{{- end -}}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
{{- end -}}
|
|
|
|
</section>
|
|
|
|
{{ partial "footer.html" . }}
|
|
{{ partial "nav.html" . }}
|
|
|
|
</article>
|
|
</div>
|
|
|
|
{{ end }}
|