diff -r bb011397a99c -r 9507107a1133 theme/templates/article.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/theme/templates/article.html Sat Mar 12 17:37:27 2016 +0100 @@ -0,0 +1,67 @@ +{% extends "base.html" %} +{% block title %}{{ article.title }} - {{SITENAME}}{% endblock title %} +{% block pageheader %} +
+ +
+{% endblock %} +{% block content %} +
+
+
Posted on {{ article.locale_date}}
+ +
+
+
+ {{ 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 %}