15 lines
412 B
HTML
15 lines
412 B
HTML
{{ range .Posts }}
|
|
<div class="h-entry">
|
|
{{ if .Post.Title }}<h3>{{ .Post.Title }}</h3>{{ end }}
|
|
{{ .HTML }}
|
|
|
|
{{ template "_post_meta.html" . }}
|
|
</div>
|
|
{{ end }}
|
|
{{ if or .PrevURL .NextURL }}
|
|
<nav class="pagination">
|
|
{{ if .PrevURL }}<a href="{{ url_abs .PrevURL }}">← Newer posts</a>{{ end }}
|
|
{{ if .NextURL }}<a href="{{ url_abs .NextURL }}">Older posts →</a>{{ end }}
|
|
</nav>
|
|
{{ end }}
|