dennogumi/layouts/shortcodes/multithumb.html
Luca Beltrame b4387bf01a
Some checks failed
ci/woodpecker/push/main Pipeline failed
I can't quite debug this stuff: works locally
2022-04-24 11:29:43 +02:00

9 lines
381 B
HTML

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