{% extends 'base.html' %} {% block container %}

Products

{%- archiveList products with type="page" limit=18 %} {%- for item in products %}
{{item.Title}} {%- if item.Stock == 0 %} Sold out {%- elif item.OriginPrice > item.Price %} Save ${{priceFormat(item.OriginPrice - item.Price)}} {%- endif %}
{{item.Title}}
${{priceFormat(item.Price)}} {%- if item.OriginPrice > 0 %}${{priceFormat(item.OriginPrice)}}{% endif %}
{%- endfor %} {%- endarchiveList %}
{%- include 'partial/pagination.html' %}
Filter and sort
{% include 'partial/filters.html' %}
{% endblock %}