From 5d9619c81b1ccccf71340aae544a66f62c103f64 Mon Sep 17 00:00:00 2001 From: Daan Debie Date: Fri, 23 Aug 2013 00:44:51 +0200 Subject: Added pelican-bootstrap3 theme --- pelican-bootstrap3/templates/article.html | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pelican-bootstrap3/templates/article.html (limited to 'pelican-bootstrap3/templates/article.html') diff --git a/pelican-bootstrap3/templates/article.html b/pelican-bootstrap3/templates/article.html new file mode 100644 index 0000000..4601627 --- /dev/null +++ b/pelican-bootstrap3/templates/article.html @@ -0,0 +1,29 @@ +{% extends "base.html" %} +{% block title %}{{ article.title }}{% endblock %} +{% block content %} +
+
+
+

+ + {{ article.title }} + +

+
+
+
+
+ {% include "includes/article_info.html" %} +
+
+ {{ article.content }} +
+ + {% include 'includes/addthis.html' %} + {% include 'includes/comments.html' %} +
+
+ +{% endblock %} -- cgit