{% if (templateVars.criteria is defined and templateVars.criteria) %}
filter:
{% for filter, value in templateVars.criteria %}
{{ filter }} with {{ value }}
{% endfor %}
<a href="{{ path( currentPath, {'filter': 'none' } + templateVars) }}" >Set filter off</a>
{% endif %}
{% if (templateVars.dimensions is defined and templateVars.dimensions) %}
Sort:
{% for dimension, value in templateVars.dimensions %}
{{ dimension }} with {{ value }}
{% endfor %}
<a href="{{ path( currentPath, {'sort': 'none' } + templateVars) }}" >Set sort off</a>
{% endif %}
{% if (templateVars.tag is defined and templateVars.tag) %}
Tag:
<strong>{{ templateVars.tag }}</strong>
<a href="{{ path( currentPath, {'tag': '' } + templateVars) }}" >Set tag off</a>
// <a href="{{ path('meta_tags_home', {tag: templateVars.tag, domain: 'member' }) }}">Edit tag</a>
{% endif %}