mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Regis Philibert
02.02.2021 120ebe58be756e2913a3c60de924c375ed950ffe
layouts/partials/func/GetFeaturedImage.html
@@ -1,8 +1,8 @@
{{/* 
    GetFeaturedImage
    This partial gets the url for featured image for a given page.
    This partial gets the url for featured image for a given page.
    If a featured_image was set in the page's front matter, then that will be used.
    If not set, this will search page resources to find an image that contains the word
@@ -11,7 +11,7 @@
    If no featured_image was set, and there's no "cover" image in page resources, then
    this partial returns an empty string (which evaluates to false).
    @return Permalink to featured image, or an empty string if not found.
    @return RelPermalink to featured image, or an empty string if not found.
*/}}
@@ -26,10 +26,10 @@
{{ else }}
    {{ $img := (.Resources.ByType "image").GetMatch "*cover*" }}
    {{ with $img }}
        {{ $linkToCover = .Permalink }}
        {{ $linkToCover = .RelPermalink }}
    {{ end }}
{{ end }}
{{/* return either a permalink, or an empty string. Note that partials can only have a single
return statement, so this needs to be at the end of the partial (and not in the if block) */}}
{{ return $linkToCover }}
{{ return $linkToCover }}