From 0290aee70d071b3d5db2ce14635842043763acb5 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Sun, 1 May 2016 23:53:51 -0400 Subject: create a basic theme (from bnewnet style) --- theme/templates/base.html | 91 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 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 100644 index 0000000..5c9fb0e --- /dev/null +++ b/theme/templates/base.html @@ -0,0 +1,91 @@ + + + +{% block head %} +{% block title %}{{ SITENAME }}{% endblock title %} + +{% 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 %} +{% block stylesheets %} + + + + +{% endblock %} +{% block externaljs %} {% endblock %} {% block otherhead %} {% endblock %} +{% endblock head %} + + +
+
+ + journal  + photos  + code  + knowledge + bnewbold.net +
+
+
+
+
+
+ + + +
+ +
+ +{% block path %}{% endblock %} + +

{% block pagetitle %}Hey Hey Hey!{% endblock %}

+

{% block pagesubtitle %}{% endblock %}

+
+{% block right_stuff %} +{% endblock %} +
+
+ + +
+{% block content %} +Here lies content! +{% endblock %} +
+{% block commentary %} {% endblock %} + + + -- cgit v1.2.3