dennogumi/layouts/shortcodes/multithumb.html

9 lines
395 B
HTML

<div class="gallery flex justify-center">
{{ range $param := .Params }}
{{ $image := resources.GetMatch ($param) }}
{{ $processed := $image.Resize ( printf "x%d %s %s %s %s" 350 "webp" "q90" "drawing" "Box" ) }}
<a href="{{ $image.RelPermalink }}">
<img class="thumbnail w6 pa1 mr1" src="{{ $processed.RelPermalink }}" style="width: 95% !important;" />
</a>
{{ end }}
</div>