sat-sw-website/layouts/index.html

18 lines
429 B
HTML
Raw Normal View History

2023-12-08 17:53:31 +01:00
{{ define "main" }}
<main aria-role="main">
<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>
<!-- TODO: Somehow display the site summary as flexboxes? -->
{{ range first 10 .Site.RegularPages }}
{{ .Render "summary" }}
{{ end }}
</div>
</main>
{{ end }}