From 66a5a0cdccd464930a232c87f91e1b0805f255a5 Mon Sep 17 00:00:00 2001 From: Chimrod Date: Tue, 16 Apr 2013 21:27:30 +0200 Subject: initial commit --- theme/templates/base.html | 55 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100755 theme/templates/base.html (limited to 'theme/templates/base.html') diff --git a/theme/templates/base.html b/theme/templates/base.html new file mode 100755 index 0000000..93ae32c --- /dev/null +++ b/theme/templates/base.html @@ -0,0 +1,55 @@ + + + + + {% block title %}{{ SITENAME }}{%endblock%} + + + + {% if tag %} + {% if TAG_FEED_ATOM %} + + {% endif %} + {% if TAG_FEED_RSS %} + + {% endif %} + {% endif %} + + {% if category %} + {% if CATEGORY_FEED_ATOM %} + + {% endif %} + {% if CATEGORY_FEED_RSS %} + + {% endif %} + {% endif %} + + {% if GOOGLE_ANALYTICS %} + + + {% endif %} + + +
+ +{% include 'header.html' %} +{% include 'menu.html' %} + +
+{% block content %} +{% endblock %} +
+ + +
+ + -- cgit v1.2.3