{{ $contact.title }}
+ {{ if $contact.subtitle }} +{{ $contact.subtitle }}
+ {{ end }}{{ $content }}
diff --git a/assets/scss/hero.scss b/assets/scss/hero.scss index 9b17d53..1530f57 100644 --- a/assets/scss/hero.scss +++ b/assets/scss/hero.scss @@ -1,5 +1,5 @@ .hero { - height: 700px; + min-height: 700px; {{ with .hero.background }} background-image: url({{ . }}) !important; background-size: cover; @@ -11,4 +11,4 @@ .hero-icon-container { padding: 1rem; margin: auto; -} \ No newline at end of file +} diff --git a/assets/scss/index.scss b/assets/scss/index.scss index 951409e..796baa3 100644 --- a/assets/scss/index.scss +++ b/assets/scss/index.scss @@ -346,6 +346,26 @@ button { object-fit: contain; } +.quote { + display: flex; + flex-direction: column; + text-align: center; + font-size: x-large; + font-style: italic; +} + +.quote > .icon-quote-left { + text-align: left; + margin-block-end: -0.5rem; + margin-inline-start: 0.5rem; +} + +.quote > .icon-quote-right { + text-align: right; + margin-block-start: -0.5rem; + margin-inline-end: -0.5rem; +} + .button-filled { background-color: {{ .Site.Params.color.primary }}; color: white; @@ -407,7 +427,7 @@ button { display: flex; flex-direction: row; flex-wrap: wrap; - justify-content: flex-start; + justify-content: center; width: 100%; } @@ -536,4 +556,4 @@ button { .services { display: inline-block; } -} \ No newline at end of file +} diff --git a/layouts/_default/list.html b/layouts/_default/list.html index dbafc46..03d6e8b 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,4 +1,11 @@ {{ define "main" }} + {{ with .Params.image }} + {{ if .url }} + + {{ else }} + + {{ end }} + {{ end }} {{ if .Content }}
{{ $content }}