feat: rename old Params.header to Params.banner

Avoid conflict with new `header` param that configures site header
This commit is contained in:
George Cushen 2022-01-20 21:43:29 +00:00
commit 963107a536

View file

@ -14,12 +14,12 @@
{{end}} {{end}}
{{end}} {{end}}
{{/* Header image */}} {{/* Banner image */}}
{{ if and .Params.header.image (not (and $featured (not .Params.image.preview_only))) }} {{ if and .Params.banner.image (not (and $featured (not .Params.image.preview_only))) }}
<div class="article-header"> <div class="article-header">
{{- $img := "" -}} {{- $img := "" -}}
{{ $alt := (.Params.header.caption | default "") | plainify }} {{ $alt := (.Params.banner.caption | default "") | plainify }}
{{ $destination := .Params.header.image }} {{ $destination := .Params.banner.image }}
{{ $is_remote := strings.HasPrefix $destination "http" }} {{ $is_remote := strings.HasPrefix $destination "http" }}
{{- if not $is_remote -}} {{- if not $is_remote -}}
{{- $img = (.Page.Resources.ByType "image").GetMatch $destination -}} {{- $img = (.Page.Resources.ByType "image").GetMatch $destination -}}
@ -30,10 +30,10 @@
{{ if $img }} {{ if $img }}
<img src="{{$img.RelPermalink}}" width="{{$img.Width}}" height="{{$img.Height}}" class="article-banner" alt="{{$alt}}"> <img src="{{$img.RelPermalink}}" width="{{$img.Width}}" height="{{$img.Height}}" class="article-banner" alt="{{$alt}}">
{{ else }} {{ else }}
<img src="{{ .Params.header.image }}" class="article-banner" alt="{{$alt}}"> <img src="{{ .Params.banner.image }}" class="article-banner" alt="{{$alt}}">
{{ end }} {{ end }}
{{ with .Params.header.caption }}<span class="article-header-caption">{{ . | markdownify | emojify }}</span>{{ end }} {{ with .Params.banner.caption }}<span class="article-header-caption">{{ . | markdownify | emojify }}</span>{{ end }}
</div> </div>
{{end}} {{end}}