blog/themes/chosto/layouts/posts/list.html

16 lines
389 B
HTML
Raw Normal View History

{{ define "main" }}
<main>
<article>
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
{{ .Content }}
</article>
<ul>
<!-- Ranges through content/posts/*.md -->
{{ range .Site.RegularPages }}
2021-05-21 14:53:35 +02:00
{{- partial "listitem.html" . -}}
{{ end }}
</ul>
2021-05-21 14:53:35 +02:00
{{- partial "pagination.html" . -}}
</main>
{{ end }}