{% extends "blog/base.html" %} {% block title %} {{ tag|title }} - {{ block.super }} {% endblock %} {% block content %}

All the posts tagged with - {{ tag.name }}

{% for post in posts %}

{{ post.title|capfirst }}

{% include 'blog/post_info.html' %}

{% empty %}

There are not posts tagged with {{ tag }}

{% endfor %}
{% endblock %}