16 lines
382 B
HTML
Raw Permalink Normal View History

2025-02-08 18:42:22 +01:00
{{ define "main" }}
<main>
<h2>{{ .Title }}</h2>
<div class="homepage-content">
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
{{.Content}}
</div>
<div>
{{range where .Site.RegularPages "Section" "posts" }}
{{ .Render "summary" }}
{{ end }}
</div>
</main>
{{ end }}