Advertisement
Guest User

Untitled

a guest
Mar 14th, 2013
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  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 %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement