2026-03-21 23:28:33 +00:00
|
|
|
{{ range .Posts }}
|
|
|
|
|
<div class="h-entry">
|
|
|
|
|
{{ if .Post.Title }}<h3>{{ .Post.Title }}</h3>{{ end }}
|
|
|
|
|
{{ .HTML }}
|
|
|
|
|
|
|
|
|
|
{{ template "_post_meta.html" . }}
|
|
|
|
|
</div>
|
2026-03-22 03:37:42 +00:00
|
|
|
{{ end }}
|
|
|
|
|
{{ if or .PrevURL .NextURL }}
|
|
|
|
|
<nav class="pagination">
|
2026-03-23 10:48:43 +00:00
|
|
|
{{ if .PrevURL }}<a href="{{ url_abs .PrevURL }}">← Newer posts</a>{{ end }}
|
|
|
|
|
{{ if .NextURL }}<a href="{{ url_abs .NextURL }}">Older posts →</a>{{ end }}
|
2026-03-22 03:37:42 +00:00
|
|
|
</nav>
|
|
|
|
|
{{ end }}
|