0
|
1 |
<div id="container" class="variable-sizes"> |
|
2 |
{% assign page_position = page.page_position %} |
|
3 |
{% for element in site.elements limit:20 offset:page.page_position %} |
|
4 |
{% include element-partial.html %} |
|
5 |
{% endfor %} |
|
6 |
</div> |
|
7 |
|
|
8 |
<script src="../{{ site.jquery_js }}"></script> |
|
9 |
<script src="../{{ site.isotope_js }}"></script> |
|
10 |
<script> |
|
11 |
$(function(){ |
|
12 |
|
|
13 |
var $container = $('#container'); |
|
14 |
|
|
15 |
$container.isotope({ |
|
16 |
itemSelector : '.element', |
|
17 |
layoutMode : 'fitRows' |
|
18 |
}); |
|
19 |
|
|
20 |
}); |
|
21 |
</script> |