web.myco.systems/themes/blowfish/layouts/shortcodes/gallery.html

15 lines
273 B
HTML
Raw Normal View History

2023-09-02 03:10:14 +00:00
{{ $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>