Produkte

{% assign all_collection = collections['all'] %} {% if all_collection and all_collection.products_count > 0 %} {% else %} {%- comment -%} Fallback: zeige Produkte aus den ersten Collections, wenn 'all' fehlt {%- endcomment -%}
    {% assign shown = 0 %} {% for collection in collections %} {% for product in collection.products %}
  • {{ product.title }}
  • {% assign shown = shown | plus: 1 %} {% if shown >= 60 %} {% break %} {% endif %} {% endfor %} {% if shown >= 60 %}{% break %}{% endif %} {% endfor %}
{% endif %}

Kategorien

Blogs

Seiten

    {%- comment -%} Zeige Seiten aus Navigation (empfohlen): passe 'footer' oder 'main-menu' an {%- endcomment -%} {%- assign nav_handle = 'footer' -%} {%- if linklists[nav_handle] and linklists[nav_handle].links.size > 0 -%} {%- for link in linklists[nav_handle].links -%}
  • {{ link.title }}
  • {%- endfor -%} {%- endif -%} {%- comment -%} Zusätzliche wichtige Seiten per Handle, nur wenn es sie gibt {%- endcomment -%} {%- assign page_handles = "uber-uns,kontaktiere-uns,versandinformationen,datenschutzerklarung,ccpa-opt-out,bestellverfolgung,informationen-zu-cookies,cookie-liste" | split: "," -%} {%- for ph in page_handles -%} {%- if pages[ph] -%}
  • {{ pages[ph].title }}
  • {%- endif -%} {%- endfor -%}