Emiliano Tortorella ea6605b225 Section list parametrization added:
list_section_class
list_post_summary_class
list_post_summary_with_image
2018-11-10 23:45:25 -04:00

20 lines
781 B
HTML
Executable File

{{ define "main" }}
<article class="pa3 pa4-ns nested-copy-line-height nested-img">
<main class="cf ph3 ph5-l pv3 pv4-l f4 tc-l center measure-wide lh-copy mid-gray">
{{- .Content -}}
</main>
<section class="{{ .Site.Params.list_section_class | default "flex-ns flex-wrap justify-around mt5" }}">
{{ range .Paginator.Pages }}
<div class="{{ .Site.Params.list_post_summary_class | default "relative w-100 w-30-l mb4 bg-white" }}">
{{ if .Site.Params.list_post_summary_with_image }}
{{- partial "summary-with-image.html" . -}}
{{ else }}
{{- partial "summary.html" . -}}
{{ end }}
</div>
{{ end }}
</section>
{{- template "_internal/pagination.html" . -}}
</article>
{{ end }}