mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-23 06:55:43 -06:00
20 lines
No EOL
417 B
HTML
20 lines
No EOL
417 B
HTML
{{ $time := now.UnixNano }}
|
|
{{ $id := delimit (slice "gallery" $time) "-" }}
|
|
|
|
<div id="{{ $id }}">
|
|
{{ .Inner }}
|
|
</div>
|
|
|
|
<script>
|
|
|
|
document.addEventListener("DOMContentLoaded", function () {
|
|
setTimeout(() => {
|
|
var elem = document.querySelector('#{{ $id }}');
|
|
var pckry = new Packery(elem, {
|
|
percentPosition: true,
|
|
gutter: 5,
|
|
resize: true
|
|
});
|
|
}, 50)
|
|
});
|
|
</script> |