16 lines
382 B
HTML
16 lines
382 B
HTML
|
|
{{ 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 }}
|
||
|
|
|