mirror of https://github.com/metafizzy/isotope
Filter & sort magical layouts
http://isotope.metafizzy.co
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
513 B
21 lines
513 B
<div id="container" class="variable-sizes"> |
|
{% assign page_position = page.page_position %} |
|
{% for element in site.elements limit:20 offset:page.page_position %} |
|
{% include element-partial.html %} |
|
{% endfor %} |
|
</div> |
|
|
|
<script src="../{{ site.jquery_js }}"></script> |
|
<script src="../{{ site.isotope_js }}"></script> |
|
<script> |
|
$(function(){ |
|
|
|
var $container = $('#container'); |
|
|
|
$container.isotope({ |
|
itemSelector : '.element', |
|
layoutMode : 'fitRows' |
|
}); |
|
|
|
}); |
|
</script> |