blowfish/layouts/shortcodes/gallery.html

15 lines
273 B
HTML
Raw Normal View History

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