blowfish/layouts/shortcodes/gallery.html

16 lines
291 B
HTML
Raw Normal View History

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