15 lines
406 B
HTML
15 lines
406 B
HTML
{{ define "main" }}
|
|
<h1 class="section-header">{{ .Title }}<a href="{{ .Permalink }}" class="hanchor" arialabel="Anchor">⌗</a></h1>
|
|
{{ with .Content }}
|
|
<div class="index-content">
|
|
{{ . }}
|
|
</div>
|
|
{{ end }}
|
|
<section class="posts">
|
|
{{ range .Pages.ByDate.Reverse }}
|
|
{{ partial "collection.html" . }}
|
|
{{ end }}
|
|
{{ partial "pagination.html" . }}
|
|
</section>
|
|
{{ end }}
|