blob: 95320ccbf30f2852dd91c4c775857e1f2eb45470 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{{ 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>
{{ range first 10 .Site.RegularPages }}
{{ .Render "about"}}
{{ end }}
</div>
</main>
{{ end }}
|