{% if products.current != blank %}
{{ product.price | money_with_sign }}
{% if product.on_sale %}On Sale
{% endif %}{% paginate products from products.current by 24 %}
{{ paginate | default_pagination }}
{% endpaginate %}
{% else %}
No products found.
{% endif %}
© Antlers Gallery 2010 - 2013.
All Rights Reserved.
Website by Kieron Gurner
{% for image in product.images %}
Store.fullSizeImages.push('{{ image | product_image_url }}');
{% endfor %}
$(document).ready(function(){
$('#artist-list-holder').append('All Artists');
$('.bag a').text('0');
$('.product-addtocart').text('Buy');
$('.previous').text('<');
$('.next').text('>');
// Strip decimals from all prices
$('.product-price').each( function(index){
var string = $(this).text();
console.log( index + ": " + string );
var newString = string.substring(0, string.length - 3);
$(this).text(newString);
});
// New Footer
$('#new-footer').appendTo('#footer');
});