web.myco.systems/web-myco/themes/blowfish/layouts/shortcodes/gallery.html
2023-09-02 03:10:14 +00: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>