dennogumi/layouts/shortcodes/multithumb.html
Luca Beltrame 89721a34ca
Some checks failed
ci/woodpecker/push/main Pipeline failed
One test
2022-04-24 11:20:06 +02:00

11 lines
427 B
HTML

<div class="gallery flex justify-center">
{{ range $param := .Params }}
{{ $image := resources.GetMatch ($param) }}
{{ $size := "x350" }}
{{ $options := printf "%s %s %s" $size "png 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>