11 lines
427 B
HTML
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 "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>
|