Created
September 5, 2014 20:59
-
-
Save rdallaire/d5177e64ce6dbfa3ec03 to your computer and use it in GitHub Desktop.
pizza
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="product-container dynamic large-4 columns"> | |
<div class="tall-slider"> | |
<div class="slide"> | |
<h2>Featured Products</h2> | |
{% assign tagName = 'foil' %} | |
{% assign tagLimit = '16' %} | |
<ul class="products list" data-tagname="{{ tagName }}"> | |
{% tagged_with tagName do products limit:tagLimit order:sell_price %} | |
{% include "theme/plugins/display_default" %} | |
{% endtagged_with %} | |
</ul> | |
<a class="view-all" href="/products/t/{{tagName}}">View All</a> | |
</div> | |
<div class="slide"> | |
<h2>Featured Products</h2> | |
{% assign tagName = 'foil' %} | |
{% assign tagLimit = '8' %} | |
<ul class="products list" data-tagname="{{ tagName }}"> | |
{% tagged_with tagName do products limit:tagLimit order:sell_price %} | |
{% include "theme/plugins/display_default" %} | |
{% endtagged_with %} | |
</ul> | |
<a class="view-all" href="/products/t/{{tagName}}">View All</a> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
$('.tall-slider').bxSlider({
hideControlOnEnd: true
});