Files
site/themes/hugo-theme-gruvbox/layouts/partials/post-list.html
2024-04-06 23:08:23 -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" . }}