{% extends "base.html" %}
{% block page_title %}Posts tagged #{{ tag }}{% endblock page_title %}
{% block content %}
Posts tagged #{{ tag }}
{% for post in posts %}
{{ post.title }}
{% if post.created %}{{ post.created }}{% endif %}
{% endfor %}
{% endblock content %}