web.myco.systems/themes/blowfish/layouts/shortcodes/gallery.html
brookee f08363cf71
All checks were successful
Hugo / build (push) Successful in 18s
alter file structure, add deployment yaml
2024-02-27 22:18:33 -05: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>