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