blog/themes/hello-friend/layouts/partials/postcover.html
Mathieu Broillet cda0c8f53d
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone Build encountered an error
init hugo
2023-06-11 11:34:59 +02:00

12 lines
454 B
HTML

<figure class="post-cover">
{{ if .Params.UseRelativeCover }}
<img src="{{ (printf "%s%s" .Permalink .Params.Cover ) }}" alt="{{ .Params.CoverAlt | plainify | default .Title }}"/>
{{ else }}
<img src="{{ .Params.Cover | absURL }}" alt="{{ .Params.CoverAlt | plainify | default .Title }}"/>
{{ end }}
{{ if .Params.CoverCaption }}
<figcaption class="center">{{ .Params.CoverCaption | markdownify }}</figcaption>
{{ end }}
</figure>