{% extends "base.html" %} {% block head_title %} {{ SITENAME | striptags }} :: {{ article.title|striptags }} {% endblock head_title %} {% block head %} {{ super() }} {% if article.summary %} {% endif %} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block main %}

{{ article.title }}

{% if article.authors %} {% for author in article.authors %} {{ author }} {% if not loop.last %} , {% else %}
{% endif %} {% endfor %} {% endif %} {{ article.locale_date }} {% if article.license %}
{{ article.license[0] }} {% endif %}

{% if article.summary %}

{{ article.summary }}

{% if 'add_sidenotes' in JINJA_FILTERS %} {{ article.content | add_sidenotes }} {% else %} {{ article.content }} {% endif %}
{% endif %} {% endblock main %}