From fb7081b1bf01032bf75ff22b559e9d15e697a9fb Mon Sep 17 00:00:00 2001 From: Chris MacMackin Date: Thu, 14 May 2015 23:00:11 -0300 Subject: Added the Backdrop theme. --- backdrop/templates/article.html | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 backdrop/templates/article.html (limited to 'backdrop/templates/article.html') diff --git a/backdrop/templates/article.html b/backdrop/templates/article.html new file mode 100644 index 0000000..27dbeee --- /dev/null +++ b/backdrop/templates/article.html @@ -0,0 +1,41 @@ +{% extends "base.html" %} +{% block title %}{{ article.title|striptags }}{%endblock%} +{% block description %} + +{% if article.tags %} + +{% endif %} +{% endblock description %} + +{% block content %} +{% import 'macros.html' as macros %} +
+
+

{{ article.title }}

+ {{ macros.article_info(article, SITEURL,disqus=DISQUS_SITENAME) }} +
+ {{ article.content }} +
+ {% if DISQUS_SITENAME %} +
+
+ + + comments powered by Disqus + {% endif %} +
+
+{% endblock content %} -- cgit