{% extends "main/master.html" %} {% block content %}

#{{ tag.name }}

{{ tag.count }} post{% if tag.count != 1 %}s{% endif %} tagged with "{{ tag.name }}"

{% if posts %} {% for post in posts %}

{{ post.title }}

{{ post.description }}
Read More
{% endfor %} {% else %}
No posts found with this tag.
{% endif %}
{% endblock %}