1. {% if colItems > 0 %}
  2. <div class="tags">
  3. <label>Tags:</label>
  4. {% if current_tags == blank %}
  5. <a href="/collections/{{ collection.handle }}" class="active">all</a>
  6. {% else %}
  7. <a href="/collections/{{ collection.handle }}">all</a>
  8. {% endif %}
  9. {% for tag in collection.all_tags %}
  10. {% if current_tags contains tag %}
  11. <a href="/collections/{{ collection.handle }}/{{ tag | handleize }}" class="active">{{ tag | downcase }}</a>
  12. {% else %}
  13. <a href="/collections/{{ collection.handle }}/{{ tag | handleize }}">{{ tag | downcase }}</a>
  14. {% endif %}
  15. {% endfor %}
  16. </div>
  17. {% endif %}