{% load wagtailcore_tags %}
{% if item.client %}

{{ item.client }}

{% endif %}

{% firstof title|richtext item.title %}

{% if meta %}
{{ meta }}
{% endif %} {% if tags %}

Filter blog posts by category

{% 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 %}
{% endif %}