{% extends "base.html" %} {% block title %}{{ article.title|striptags }}{% endblock %} {% block content %}
{% for author in article.authors %} {% endfor %}
{# title with big background image #} {% if article.cover %}
{{ article.title|striptags }}

{{ article.title }}

{% if article.subtitle %}

{{ article.subtitle }}

{% endif %}
{% else %}
{% if article.thumbnail %} {{ article.title|striptags }} {% endif %}

{{ article.title }}

{% if article.subtitle %}

{{ article.subtitle }}

{% endif %}
{% endif %}
{{ article.content }}
{% if DISQUS_SITENAME %}
{% endif %}
{% endblock %}