18 lines
429 B
HTML
18 lines
429 B
HTML
|
|
||
|
{{ 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 }}
|
||
|
|
||
|
|