Section list parametrization added:

list_section_class
list_post_summary_class
list_post_summary_with_image
This commit is contained in:
Emiliano Tortorella 2018-11-10 23:45:25 -04:00
parent e0e03d1280
commit ea6605b225

View File

@ -3,10 +3,14 @@
<main class="cf ph3 ph5-l pv3 pv4-l f4 tc-l center measure-wide lh-copy mid-gray"> <main class="cf ph3 ph5-l pv3 pv4-l f4 tc-l center measure-wide lh-copy mid-gray">
{{- .Content -}} {{- .Content -}}
</main> </main>
<section class="flex-ns flex-wrap justify-around mt5"> <section class="{{ .Site.Params.list_section_class | default "flex-ns flex-wrap justify-around mt5" }}">
{{ range .Paginator.Pages }} {{ range .Paginator.Pages }}
<div class="relative w-100 w-30-l mb4 bg-white"> <div class="{{ .Site.Params.list_post_summary_class | default "relative w-100 w-30-l mb4 bg-white" }}">
{{- partial "summary.html" . -}} {{ if .Site.Params.list_post_summary_with_image }}
{{- partial "summary-with-image.html" . -}}
{{ else }}
{{- partial "summary.html" . -}}
{{ end }}
</div> </div>
{{ end }} {{ end }}
</section> </section>