{% pageurl item as index %}
{% if request.GET.filter == '' or not request.GET.filter %}
{% include "patterns/atoms/tag/tag.html" with tag_link_base=index has_all_filter=True item=None is_active=True %}
{% else %}
{% include "patterns/atoms/tag/tag.html" with tag_link_base=index has_all_filter=True item=None %}
{% endif %}
{% for tag in tags %}
{% if request.GET.filter == tag.slug %}
{% include "patterns/atoms/tag/tag.html" with item=tag is_active=True %}
{% else %}
{% include "patterns/atoms/tag/tag.html" with item=tag %}
{% endif %}
{% endfor %}