1
Fork 0
mmaker.moe/layouts/shortcodes/img.html
2025-12-02 23:49:51 -05:00

14 lines
No EOL
532 B
HTML

<div class="image-container">
{{ $src := .Get "src" }}
{{ if hasPrefix $src "/" }}
<img src='{{ $src }}' title='{{ .Get "caption" | markdownify }}' />
{{ else }}
{{ $img := .Page.Resources.GetMatch $src }}
{{ if $img }}
<img src='{{ $img.RelPermalink }}' title='{{ .Get "caption" | markdownify }}' />
{{ else }}
<img src='{{ $src }}' title='{{ .Get "caption" | markdownify }}' />
{{ end }}
{{ end }}
<p>{{ .Get "caption" | markdownify }}</p>
</div>