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

{% tagDetail with name="Title" %}

{%- tagDetail tagId with name="Id" %} {%- archiveList archives with type="page" limit=18 tagId=tagId %} {%- for item in archives %}
{{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' %}
{% endblock %}