fix: use page resource permalink in link image

closes https://github.com/CaiJimmy/hugo-theme-stack/issues/982
This commit is contained in:
Jimmy Cai 2024-03-27 10:56:48 +01:00
parent 54a8ace564
commit 31a4c435b1

View File

@ -16,8 +16,12 @@
</div>
{{ with $link.image }}
{{ $permalink := . }}
{{ with ($.Resources.GetMatch (printf "%s" (. | safeURL))) }}
{{ $permalink = .RelPermalink }}
{{ end }}
<div class="article-image">
<img src="{{ . }}" loading="lazy">
<img src="{{ $permalink }}" loading="lazy">
</div>
{{ end }}
</a>