Add home height, width params

This commit is contained in:
Will Faught
2023-03-04 15:53:30 -08:00
parent d67b9e7123
commit c5b52d680d
2 changed files with 7 additions and 3 deletions

View File

@@ -1,7 +1,9 @@
{{ define "main" }}
{{ $page := . }}
{{ $height := $page.Params.paige.home.image.height | default "20rem" }}
{{ $stretch := $page.Params.paige.home.image.stretch }}
{{ $width := $page.Params.paige.home.image.width }}
<article class="paige-article paige-home">
<div class="align-items-center d-flex flex-column mb-0">
@@ -10,10 +12,10 @@
{{ if or $page.Params.paige.home.image.url $page.Params.paige.home.greeting $page.Params.paige.home.blurb }}
<div>
{{ if $page.Params.paige.home.image.url }}
{{ $class := cond ($stretch | not) "mw-100 rounded-4 shadow" "rounded-4 shadow w-100" }}
{{ $style := cond ($stretch | not) "height: 20rem; width: auto" "height: 20rem; object-fit: cover; width: 100%" }}
{{ $class := cond ($stretch | not) "mw-100 rounded-4 shadow" "rounded-4 shadow" }}
{{ $style := cond ($stretch | not) (printf "height: %s; width: %s" $height ($width | default "auto")) (printf "height: %s; object-fit: cover; width: %s" $height ($width | default "100%")) }}
<p {{ if not $stretch }} class="text-center" {{ end }}>
<p {{ if or (not $stretch) $width }} class="text-center" {{ end }}>
{{ partial "paige/img.html" (dict
"alt" $page.Params.paige.home.image.alt
"class" $class