1
0
Fork 0
mirror of https://github.com/Findus23/guides.git synced 2024-09-20 17:13:51 +02:00
guides/layouts/shortcodes/image.html

9 lines
286 B
HTML
Raw Normal View History

2022-01-08 22:59:34 +01:00
<figure>
{{ with .Page.Resources.GetMatch (printf "*%s*" (.Get "src")) }}
2022-05-17 15:02:45 +02:00
<img src="{{ .Permalink }}" width="{{ .Width }}" height="{{ .Height }}" loading="lazy">
2022-01-08 22:59:34 +01:00
{{ end }}
2022-02-21 14:15:16 +01:00
{{if .Get "title"}}
<figcaption>{{ .Get "title" }}</figcaption>
{{end}}
2022-01-08 22:59:34 +01:00
</figure>