sitemap

<ul>
  {% for collection in collections %}
    <li><a href="{{ collection.url }}">{{ collection.title }}</a></li>
  {% endfor %}

  {% for product in products %}
    <li><a href="{{ product.url }}">{{ product.title }}</a></li>
  {% endfor %}

  {% for page in pages %}
    <li><a href="{{ page.url }}">{{ page.title }}</a></li>
  {% endfor %}
</ul>