Files
site/themes/hugo-theme-gruvbox/layouts/partials/post-list.html
2024-03-31 12:40:33 -04:00

14 lines
312 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" . }}