{% extends "base.html" %} {% block title %} {{ article.title}} {%endblock title %} {% block home %} | Home | {% 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 %}