12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- {{ $ := .root }}
- {{ $page := .page }}
- {{ $bg := $page.Params.design.background }}
- {{ if $page.Params.hero_media }}
- <div class="row">
- <div class="col-12 col-md-6 order-md-1 text-center text-md-left">
- {{ end }}
- <h1 class="hero-title">
- {{ with $page.Title }}{{ . | markdownify }}{{ end }}
- </h1>
- {{ with $page.Content }}
- <div class="hero-lead">{{ . }}</div>
- {{ end }}
- {{/* Call-to-action link */}}
- {{ if $page.Params.cta.url }}
- {{ $pack := or $page.Params.cta.icon_pack "fas" }}
- {{ $pack_prefix := $pack }}
- {{ if in (slice "fab" "fas" "far" "fal") $pack }}
- {{ $pack_prefix = "fa" }}
- {{ end }}
- {{ $link := $page.Params.cta.url }}
- {{ $scheme := (urls.Parse $link).Scheme }}
- {{ $target := "" }}
- {{ if not $scheme }}
- {{ $link = $link | relLangURL }}
- {{ else if in (slice "http" "https") $scheme }}
- {{ $target = "target=\"_blank\" rel=\"noopener\"" }}
- {{ end }}
- <p class="cta-btns">
- <a href="{{ $link | safeURL }}" {{ $target | safeHTMLAttr }} class="btn {{if $bg.text_color_light}}btn-light{{else}}btn-primary{{end}} btn-lg mb-3 mb-md-1">{{ if $page.Params.cta.icon }}<i class="{{ $pack }} {{ $pack_prefix }}-{{ $page.Params.cta.icon }} pr-1" aria-hidden="true"></i>{{end}}{{ $page.Params.cta.label | markdownify | emojify | safeHTML }}</a>
- {{/* Alternative Call-to-action link */}}
- {{ if $page.Params.cta_alt.url }}
- {{ $link := $page.Params.cta_alt.url }}
- {{ $scheme := (urls.Parse $link).Scheme }}
- {{ $target := "" }}
- {{ if not $scheme }}
- {{ $link = $link | relLangURL }}
- {{ else if in (slice "http" "https") $scheme }}
- {{ $target = "target=\"_blank\" rel=\"noopener\"" }}
- {{ end }}
- <a href="{{ $link | safeURL }}" {{ $target | safeHTMLAttr }} class="hero-cta-alt btn-lg pl-md-4">{{ $page.Params.cta_alt.label | markdownify | emojify | safeHTML }} <i class="fas fa-angle-right"></i></a>
- {{ end }}
- </p>
- {{ end }}
- {{/* Call-to-action note */}}
- {{ with $page.Params.cta_note }}
- <p class="hero-note text-muted mb-3 mb-md-1">
- {{ .label | markdownify | emojify | safeHTML }}
- </p>
- {{ end }}
- {{/* Hero image */}}
- {{ if $page.Params.hero_media }}
- </div>
- <div class="col-12 mx-auto col-md-6 order-md-2 hero-media">
- {{ $image := $page.Parent.Resources.GetMatch $page.Params.hero_media }}
- {{ if $image }}
- {{ $legacy_img := $image.Resize "400x" }}
- {{ $img_src := "" }}
- {{ $img_src_set := slice }}
- {{ $widths := slice 1200 800 400 }}
- {{ range $widths }}
- {{ $src_link := ($image.Resize (printf "%dx" .)).RelPermalink }}
- {{ if eq $img_src "" }}
- {{ $img_src = $src_link }}
- {{ end }}
- {{ $img_src_set = $img_src_set | append (printf "%s %dw" $src_link .) }}
- {{ end }}
- {{ $img_src_set = delimit $img_src_set "," }}
- <img src="{{ $legacy_img.RelPermalink }}" srcset="{{ $img_src_set }}" width="{{ $image.Width }}" height="{{ $image.Height }}" alt="{{ $page.Title }}">
- {{ else }}
- {{ $media_dir := $.Scratch.Get "media_dir" }}
- <img src="{{ printf "%s/%s" $media_dir $page.Params.hero_media | relURL }}" alt="{{ $page.Title }}">
- {{ end }}
- </div>
- </div>
- {{ end }}
|