2023-10-28 08:20:52 +00:00
|
|
|
<!-- Modified to have the featured image field as a dict (being able to specify meta data and display option for image) -->
|
|
|
|
{{ $result := dict "exists" false "permalink" nil "resource" nil "isDefault" false }}
|
|
|
|
{{ $imageField := "featured_image" }}
|
|
|
|
{{ $imageValue := index .Context.Params $imageField }}
|
|
|
|
|
|
|
|
{{ if $imageValue }}
|
|
|
|
{{ $imageValue := index $imageValue "src" }}
|
|
|
|
<!-- If page has `image` field set -->
|
|
|
|
{{ $result = merge $result (dict "exists" true) }}
|
|
|
|
{{ $url := urls.Parse $imageValue }}
|
|
|
|
|
|
|
|
{{ if or (eq $url.Scheme "http") (eq $url.Scheme "https") }}
|
|
|
|
<!-- Is an external image -->
|
|
|
|
{{ $result = merge $result (dict "permalink" $imageValue) }}
|
|
|
|
{{ else }}
|
2024-09-01 13:48:18 +00:00
|
|
|
{{ $pageResourceImage := (.Context.Resources.GetMatch ($imageValue | safeURL)).Fill "300x300 center" }}
|
2023-10-28 08:20:52 +00:00
|
|
|
|
|
|
|
{{ if $pageResourceImage }}
|
|
|
|
<!-- If image is found under page bundle -->
|
|
|
|
{{ $result = merge $result (dict "permalink" $pageResourceImage.RelPermalink) }}
|
|
|
|
{{ else }}
|
|
|
|
<!-- Can not find the image under page bundle. Could be a relative linked image -->
|
2024-09-01 13:48:18 +00:00
|
|
|
{{ $result = merge $result (dict "permalink" (printf "%s" (relURL $imageValue))) }}
|
2023-10-28 08:20:52 +00:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ else }}
|
|
|
|
<!-- Type arg is set, check for defaultImage setting -->
|
2024-09-01 13:48:18 +00:00
|
|
|
{{ $defaultImageSetting := .Context.Site.Params.defaultImage }}
|
2023-10-28 08:20:52 +00:00
|
|
|
|
|
|
|
{{ $result = merge $result (dict "isDefault" true) }}
|
|
|
|
{{ $result = merge $result (dict "exists" true) }}
|
|
|
|
|
|
|
|
{{ if $defaultImageSetting.local }}
|
|
|
|
{{ $siteResourceImage := resources.GetMatch (printf "%s" ($defaultImageSetting.src | safeURL)) }}
|
|
|
|
|
|
|
|
{{ if $siteResourceImage }}
|
|
|
|
<!-- Try search image under site's assets folder -->
|
2024-09-01 13:48:18 +00:00
|
|
|
{{ $result = merge $result (dict "permalink" ($siteResourceImage.Fill "300x300 center").RelPermalink) }}
|
2023-10-28 08:20:52 +00:00
|
|
|
{{ else }}
|
|
|
|
<!-- Can not find the image -->
|
|
|
|
{{ errorf "Failed loading image: %q" $defaultImageSetting.src }}
|
|
|
|
{{ $result = merge $result (dict "exists" false) }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ else }}
|
|
|
|
<!-- External image -->
|
|
|
|
{{ $result = merge $result (dict "permalink" (relURL $defaultImageSetting.src)) }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ return $result }}
|
|
|
|
|