blowfish/layouts/shortcodes/gallery.html
2023-08-17 22:01:42 +01:00

15 lines
No EOL
273 B
HTML

{{ $id := delimit (slice "gallery" .Ordinal now.UnixNano) "-" }}
<div id="{{ $id }}">
{{ .Inner }}
</div>
<script>
$(window).on("load", function () {
$('#{{ $id }}').packery({
percentPosition: true,
gutter: 5,
resize: true
});
})
</script>