blog/themes/xsfx/layouts/_default/list.html

24 lines
543 B
HTML

{{ define "main" }}
<main>
{{ if or .Title .Content }}
<div>
{{ with .Title }}<h1>{{ . }}</h1>{{ end }}
{{ with .Content }}<div>{{ . }}</div>{{ end }}
</div>
{{ end }}
{{ range .Paginator.Pages }}
<article class="h-entry">
{{ if eq .Type "posts" }}
{{ partial "article.html" . }}
{{ else if eq .Type "notes" }}
{{ partial "note.html" . }}
{{ end }}
<hr>
</article>
<hr>
{{ end }}
{{ partial "pagination.html" . }}
</main>
{{ end }}