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

12 lines
427 B
HTML

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