MtF-wiki/layouts/shortcodes/gallery.html

7 lines
230 B
HTML

{{- $pattern := .Get "pattern" }}
{{- $resources := .Page.Resources.Match $pattern }}
<section class="gallery">
{{- range $resources }}
<img src="{{ .Permalink }}" width="{{ .Width }}" height="{{ .Height }}">
{{- end }}
</section>