{% extends "index.html" %}
{% import "post_macros.html" as post_macros %}
{% block title %}Tag - {{ term.name }}{% endblock title %}
{% block meta %}
{% endblock meta %}
{% block links %}
{% endblock links %}
{% block content %}
Posts Tagged as "{{ term.name }}"
{% for page in term.pages %}
{{ post_macros::snippet(page=page) }}
{% endfor %}
{% include "footer.html" %}
{% endblock content %}