Files
site/themes/custom-theme/layouts/partials/post-list.html
Dave Gallant 8d898eb69a Tweak theme
2024-04-07 21:55:42 -04:00

11 lines
307 B
HTML

{{ range $pageIndex, $page := .Pages }}
<article class="post">
<div class="post-header">
<a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
{{ partial "post-meta.html" (dict "page" . "pageIndex" $pageIndex) }}
</div>
</article>
{{ end }}
{{ partial "pagination.html" . }}