mirror of
https://github.com/theNewDynamic/gohugo-theme-ananke.git
synced 2025-06-08 09:12:47 +00:00
10 lines
287 B
HTML
10 lines
287 B
HTML
{{ $linkToCover := "" }}
|
|
{{ if .Params.featured_image }}
|
|
{{ $linkToCover = .Params.featured_image }}
|
|
{{ else }}
|
|
{{ $img := .Resources.GetMatch "**cover*.jpg" }}
|
|
{{ with $img }}
|
|
{{ $linkToCover = .Permalink }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ return $linkToCover }} |