Startseite > Template- und Themeprogrammierung > Shop-Templates > customer/product_list.liquid

customer/product_list.liquid

Das Template <keyword>customer/product_list.liquid</keyword> rendert die kundenindividuelle Produkt-Liste.

Speicherort

Das Template muss unter <keyword>templates/customer/product_list.liquid</keyword> abgelegt werden.

Verfügbare Objekte

Innerhalb des <keyword>customer/product_list.liquid</keyword> Templates stehen folgende Objekte zur Verfügung:

Beispiel-Template

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 %}