post-cover: fix strange /./ in cover image url 2

#13
This commit is contained in:
Aditya Telange 2020-10-10 19:41:44 +05:30
parent e04e248ae1
commit 3ca79f59fe
No known key found for this signature in database
GPG Key ID: 82E844EF3DA99E77

View File

@ -36,7 +36,7 @@
{{- if (or (fileExists (path.Join "static" .Params.cover.image)) (hasPrefix .Params.cover.image "http://") (hasPrefix .Params.cover.image "https://")) }}
<img src="{{ .Params.cover.image | absURL }}" alt="{{ .Params.cover.alt | plainify }}">
{{- else}}
<img src="{{ .Permalink -}} {{- .Params.cover.image }}" alt="{{ .Params.cover.alt | plainify }}">
<img src="{{ (path.Join .RelPermalink .Params.cover.image ) | absURL }}" alt="{{ .Params.cover.alt | plainify }}">
{{- end}}
</figure>
{{- end }}