{% extends "base.html" %}
{% block title %}{{ article.title|striptags }}{% endblock %}
{% block content %}
{% include 'twitter.html' %}
{% include 'article_infos.html' %}
{{ article.content }}
{% include 'article_infos_bottom.html' %}
{% if DISQUS_SITENAME and SITEURL and article.status != "draft" %}
Comments
{% include 'disqus_script.html' %}
{% endif %}
{% endblock %}