26 lines
673 B
HTML
26 lines
673 B
HTML
<!-- Header -->
|
|
{{ partial "header.html" . }}
|
|
|
|
<!-- Head -->
|
|
{{ partial "head.html" . }}
|
|
|
|
<!-- Navigation -->
|
|
{{ partial "navigation.html" . }}
|
|
|
|
<!-- Loop through all posts -->
|
|
{{ range (where .Data.Pages.ByLastmod.Reverse "Section" "!=" "") }}
|
|
<div class="container"><div class="child">
|
|
<h1 id="{{ .LinkTitle }}">{{ .Title }} <span style="font-size:0.8em; font-weight:100;"><a class="nav" href="{{ .RelPermalink }}">→</a></span></h1>
|
|
<p>
|
|
{{ .Content }}
|
|
</p>
|
|
<div class="backtotop"><a class="nav" href="#top">↑</a></div>
|
|
</div></div>
|
|
{{ end }}
|
|
|
|
|
|
<!-- Foot -->
|
|
{{ partial "foot.html" . }}
|
|
|
|
<!-- Footer -->
|
|
{{ partial "footer.html" . }}
|