New shortcode, multithumb, to display galleries

This commit is contained in:
Luca Beltrame 2021-02-27 01:13:47 +01:00
parent 5009bf3eb4
commit 4813237b43
Signed by: einar
GPG key ID: 4707F46E9EC72DEC

View file

@ -0,0 +1,11 @@
<div class="gallery flex justify-center">
{{ range $param := .Params }}
{{ $image := resources.GetMatch ($param) }}
{{ $size := "x350" }}
{{ $options := printf "%s %s %s" $size "jpg q90" "Box"}}
{{ $imagethumbnail := $image.Resize $options}}
<a href="{{ $image.RelPermalink }}">
<img class="thumbnail w6 pa1 mr1" src="{{ $imagethumbnail.RelPermalink }}" style="width: 95% !important;" />
</a>
{{ end }}
</div>