mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-23 06:55:43 -06:00
16 lines
No EOL
282 B
HTML
16 lines
No EOL
282 B
HTML
{{ $time := now.UnixNano }}
|
|
{{ $id := delimit (slice "gallery" $time) "-" }}
|
|
|
|
<div id="{{ $id }}">
|
|
{{ .Inner }}
|
|
</div>
|
|
|
|
<script>
|
|
$(document).ready(function () {
|
|
$('#{{ $id }}').packery({
|
|
percentPosition: true,
|
|
gutter: 5,
|
|
resize: true
|
|
});
|
|
})
|
|
</script> |