{% extends "index.html" %}
{% import "index_macros.html" as index_macros %}
{% import "taxonomy_macros.html" as taxonomy_macros %}
{% block content %}
{% block header %}
{{ super() }}
{% endblock header %}
{% if not title %}
{% set title = "All " ~ taxonomy.name | title %}
{% endif %}
{{ index_macros::hero(title=title,primary=false) }}
{{ taxonomy_macros::list(terms=terms) }}
{% endblock content %}