Sha256: a44d20e15ea6619505b4536dbb7db477076d48c855606a6e9d3a3e64a530c5fd
Contents?: true
Size: 723 Bytes
Versions: 7
Compression:
Stored size: 723 Bytes
Contents
{% paginate products from products.current by theme.products_per_page %} {% if products != blank %} <ul> {% for product in products %} <li class="{{ product.css_class }}"> <a href="{{ product.url }}"> <img alt="Image of {{ product.name | escape }}" src="{{ product.image | product_image_url size: theme.product_image_size }}"> <b>{{ product.name }}</b> <i>{{ product.default_price | money_with_sign }}</i> {% if product.on_sale %} <em>On Sale</em> {% endif %} </a> </li> {% endfor %} </ul> {{ paginate | default_pagination }} {% else %} <p>No products found.</p> {% endif %} {% endpaginate %}
Version data entries
7 entries across 7 versions & 1 rubygems