{% extends "base.html" %} {% block head %} {{ super() }} {% if article.description %} {% endif %} {% for tag in article.tags %} {% endfor %} {% endblock %} {% block title %}{{ SITENAME }} - {{ article.title }}{% endblock %} {% block content %}

{{ article.title }}

{% if article.authors %} By {% for author in article.authors %} {{ author }} {% endfor %} {% endif %}



{{ article.content }}
{% if article.related_posts %}

Related posts

{% endif %}
{% endblock %}