{% extends "base.html" %} {% block menu %} | Home | {% for p in PAGES %} | {{p.title}} | {% endfor %} {% endblock %} {% block article %}

{{ article.title |striptags }}

{% endblock %} {% block head %} {{ super() }} {% for keyword in article.keywords %} {% endfor %} {% for description in article.description %} {% endfor %} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block content %}
{{ article.content }}
{% endblock %}