From 7d192c0045b4b3441407e094fafbcf8d14448df5 Mon Sep 17 00:00:00 2001 From: housne Date: Sat, 19 Oct 2013 02:28:55 +0800 Subject: pelican new theme simple-bootstrap --- simple-bootstrap/templates/base.html | 61 ++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100755 simple-bootstrap/templates/base.html (limited to 'simple-bootstrap/templates/base.html') diff --git a/simple-bootstrap/templates/base.html b/simple-bootstrap/templates/base.html new file mode 100755 index 0000000..b1f06a7 --- /dev/null +++ b/simple-bootstrap/templates/base.html @@ -0,0 +1,61 @@ + + + + {% block head %} + {% block title %}{{ SITENAME }}{% endblock %} + + + + + {% if FEED_ALL_ATOM %} + + {% endif %} + {% if FEED_ALL_RSS %} + + {% endif %} + {% if FEED_ATOM %} + + {% endif %} + {% if FEED_RSS %} + + {% endif %} + {% if CATEGORY_FEED_ATOM and category %} + + {% endif %} + {% if CATEGORY_FEED_RSS and category %} + + {% endif %} + {% if TAG_FEED_ATOM and tag %} + + {% endif %} + {% if TAG_FEED_RSS and tag %} + + {% endif %} + {% endblock head %} + + + +
+
+ +

{{ SITENAME }}

+
+ {% block content %} + {% endblock %} + +
+ + -- cgit