{% extends "base.html" %} {% block head %} {{ super() }} {% endblock head %} {% block title %}{{ article.title|striptags }}{% endblock %} {% block content %}

{{ article.title }}

{{ article.content }}
By @{{ article.author }} in
Tags : {% if article.tags %} {% for tag in article.tags %} #{{ tag }}, {% endfor %} {% endif %}
{% if DISQUS_SITENAME %}

Comments !

{% endif %}
{% endblock %}