{% extends "base.html" %} {% block title %}{{ article.title|striptags }}{% endblock %} {% block tags %} {% with item=article %} {% include 'meta_tags.html' %} {% endwith %} {% endblock %} {% block content %}

{{ article.title }}

{% include 'article_infos.html' %}
{{ article.content }}
{% include 'related_posts.html' %} {% if DISQUS_SITENAME and SITEURL and article.status != "draft" %}

Comments !

{% endif %}
{% endblock %}