{% extends 'base.html' %} {% block extra_head %} {% include "includes/social.html" %} {% endblock %} {% block extra_title %} {% if active_tag %} - Tag - {{ active_tag.name|title }} {% elif active_year %} - Year - {{ active_year }} {% endif %} {% endblock %} {% block extra_description %} {% if active_tag %} Currently filtered by tag {{ active_tag.name|title }}. {% elif active_year %} Currently filtered by year {{ active_year }}. {% endif %} {% endblock %} {% block extra_breadcrumbs %} {% if active_tag %} {% elif active_year %} {% else %} {% endif %} {% endblock %} {% block main %}

{% if active_tag %} {% elif active_year %} {% endif %} {{ page.title }}

{% include 'includes/search_form.html' %}
tags {% for tag in tags %} {{ tag.name|title }} {% endfor %} year {% for year in years %} {{ year }} {% endfor %} {% if active_tag or active_year %} clear {% endif %}
{% set blog_post = blog_posts[0] if blog_posts else None %} {% if blog_post %} {% include "includes/blog_post_latest.html" %} {% endif %}
{% for blog_post in blog_posts %} {% if not loop.first %}
{% include "includes/blog_post_card.html" %}
{% endif %} {% endfor %}
{% if extra_posts %}
I don't have any more posts with this filter at the moment but here are some other posts you might like!
{% for blog_post in extra_posts %}
{% include "includes/blog_post_card.html" %}
{% endfor %}
{% endif %}
{% endblock %}