{% extends 'base.html' %} {% block container %} Products Sort by: Featured Best selling Price, low to high Price, high to low Date, old to new Date, new to old Filter and sort {%- archiveList products with type="page" limit=18 %} {%- for item in products %} {%- 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 %}