Das Template <keyword>customer/product_list.liquid</keyword> rendert die kundenindividuelle Produkt-Liste.
Das Template muss unter <keyword>templates/customer/product_list.liquid</keyword> abgelegt werden.
Innerhalb des <keyword>customer/product_list.liquid</keyword> Templates stehen folgende Objekte zur Verfügung:
Das nachfolgend Beispiel zeigt die Ausgabe einer Produkt-Liste mit Blätter-Funktion.
<ul>
{% for product in product_list.products %}
<li>
<!-- product attributes -->
</li>
{% endfor %}
</ul>
{% if product_list.previous_page %}
<a href="{{ page | pagination_url:'previous' }}">previous page</a>
{% endif %}
{% if product_list.next_page %}
<a href="{{ page | pagination_url:'next' }}">next page</a>
{% endif %}