diff --git a/themes/cwi/templates/article.html b/themes/cwi/templates/article.html new file mode 100644 index 0000000000000000000000000000000000000000..06110b4312142d12bddf3ce098df6d576a861ef9 --- /dev/null +++ b/themes/cwi/templates/article.html @@ -0,0 +1,37 @@ +{% extends "base.html" %} +{% block title %}{{ article.title|striptags }}{% endblock %} +{% block content %} +
+
+
+

+ {{ article.title }}

+ {% include 'twitter.html' %} +
+ +
+ {% include 'article_infos.html' %} + {{ article.content }} +
+ {% if DISQUS_SITENAME and SITEURL and article.status != "draft" %} +
+

Comments !

+
+ + +
+ {% endif %} + +
+
+{% endblock %}