hugo-theme-zzo/layouts/_default/summary.html

9 lines
384 B
HTML
Raw Permalink Normal View History

2019-11-12 03:10:27 +00:00
{{ if eq (lower .Site.Params.summaryShape) "card" }}
{{ partial "summary/card" . }}
2019-11-12 03:10:27 +00:00
{{ else if eq (lower .Site.Params.summaryShape) "classic" }}
{{ partial "summary/classic" . }}
{{ else if eq (lower .Site.Params.summaryShape) "compact" }}
{{ partial "summary/compact" . }}
2019-11-12 03:10:27 +00:00
{{ else }}
{{ printf "%#v" "Not supported shape. Please edit config param(summaryShape)." }}
2019-11-12 03:10:27 +00:00
{{ end }}