2019-11-21 04:38:53 +00:00
|
|
|
{{ define "content" }}
|
2019-12-07 19:33:50 +00:00
|
|
|
<article class="homepage-content h-entry e-content">
|
2019-11-21 04:38:53 +00:00
|
|
|
<!-- Note that the content for index.html, as a sort of list page, will pull from content/_index.md -->
|
|
|
|
{{.Content}}
|
|
|
|
</article>
|
2019-12-07 19:33:50 +00:00
|
|
|
<section class="h-feed">
|
|
|
|
{{ if .Site.Params.homepageSectionTitle }}
|
|
|
|
<h2 class="p-name u-url"><a href="{{ .Site.BaseURL }}">{{ .Site.Params.homepageSectionTitle }}</a></h2>
|
|
|
|
{{ end }}
|
|
|
|
<!-- Note that .Pages is the same as .Site.RegularPages on the homepage template. -->
|
|
|
|
{{ range $index, $page := (.Paginate (where (where .Site.RegularPages "Type" "in" site.Params.mainSections) ".Params.hidden" "!=" "true" )).Pages }}
|
|
|
|
{{ if ne $index 0 }}
|
|
|
|
{{ end }}
|
|
|
|
{{ .Render "summary" }}
|
|
|
|
{{ end }}
|
|
|
|
</section>
|
2019-11-24 21:51:04 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ define "content-footer" }}
|
|
|
|
{{ partial "paginator.html" .Paginator }}
|
2019-11-21 04:38:53 +00:00
|
|
|
{{ end }}
|