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

{#{{ SITENAME }}#} {% if SITESUBTITLE %} {{ SITESUBTITLE }}{% endif %} {#:#} {{ article.title }}

{% if not HIDE_DATE %}{% endif %}
{{ article.content }}
{% if article.tags %}
Tags: {% for tag in article.tags %} {% if not loop.last %}, {% endif %} {% endfor %}
{% endif %}

{% endblock %}