jlelse
/
Indieroad
Archived
1
Fork 0
This repository has been archived on 2020-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
Indieroad/layouts/index.html

16 lines
489 B
HTML

{{ define "main" }}
<main class="main list h-feed">
{{- with .Content }}
<div class="main-content">
{{ . }}
</div>
{{- end }}
{{- $postSections := ($.Param "postSections" | default (slice "posts")) }}
{{- $paginator := .Paginate ( where .Site.RegularPages "Type" "in" $postSections ) }}
{{- range $paginator.Pages }}
{{- .Render "summary" }}
{{- end }}
{{ if (.Param "authorbox") }}{{ partialCached "authorbox" . }}{{ end }}
</main>
{{ partial "pagination.html" . }}
{{ end }}