New shortcode, multithumb, to display galleries
This commit is contained in:
parent
5009bf3eb4
commit
4813237b43
1 changed files with 11 additions and 0 deletions
11
layouts/shortcodes/multithumb.html
Normal file
11
layouts/shortcodes/multithumb.html
Normal 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>
|
Loading…
Add table
Reference in a new issue