{% extends "base.html" %} {% block title %}{{ article.title }} - {{ article.category }}{% endblock %} {% block head %} {{ super() }} {% if article.description %} {% endif %} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block content %} {{ article.title }} {{ article.date.strftime("%d %B %Y") }} {{ article.category }} {% for tag in article.tags %} {{tag}} {% endfor %} {{ article.content }} {% endblock %}