Feed
{% layout none %}
{% for product in collections.all.products %}
{% comment %} Skip product if it has the 'hide_from_feed' tag {% endcomment %}
{% if product.tags contains 'hide_from_feed' %}
{% continue %}
{% endif %}
-
{{ product.title | xml_escape }}
{{ shop.url }}{{ product.url }}
{{ product.price | money_without_currency }}
{% endfor %}
