12 lines
220 B
HTML
12 lines
220 B
HTML
|
{{ $featured := "" }}
|
||
|
|
||
|
{{- with .Params.images -}}
|
||
|
{{ $featured = ( index . 0 ) }}"/>
|
||
|
{{ else -}}
|
||
|
{{- with .Site.Params.images -}}
|
||
|
{{ $featured = ( index . 0 ) }}"/>
|
||
|
{{ end }}
|
||
|
{{ end }}
|
||
|
|
||
|
{{ return $featured }}
|