{% extends "base.html" %} {% block title %}{{ article.title }} - {{SITENAME}}{% endblock title %} {% block pageheader %}
{% endblock %} {% block content %}
Posted on {{ article.locale_date}}{% if article.locale_modified and article.locale_modified != article.locale_date %} (last updated on {{ article.locale_modified }}) {% endif %}
{{ article.content }}
{% include 'article_discus.html' %}
{% endblock %} {% block sidecontent %} {% if article.series %}

{{article.series.name}}

    {% for part_article in article.series.all %}
  1. {{ part_article.title }}
  2. {% endfor %}
{% endif %} {% if article.related_posts %}

See also

    {% for related_article in article.related_posts %}
  1. {{ related_article.title }}
  2. {% endfor %}
{% else %}

No related posts

{% endif %} {% endblock %}