diff --git a/themes/bootstrap2/templates/sidebar.html b/themes/bootstrap2/templates/sidebar.html
new file mode 100644
index 0000000000000000000000000000000000000000..65755fad69245a40587a04a61c5ce1ea4ab98a1e
--- /dev/null
+++ b/themes/bootstrap2/templates/sidebar.html
@@ -0,0 +1,48 @@
+
+ {% if LINKS %}
+
+ {% for name, link in LINKS %}
+ - {{ name }}
+ {% endfor %}
+ {% endif %}
+ {% if SOCIAL %}
+
+ {% if FEED_ALL_ATOM %}
+ - atom feed
+ {% endif %}
+ {% if FEED_RSS %}
+ - rss feed
+ {% endif %}
+ {% for name, link in SOCIAL %}
+ - {{ name }}
+ {% endfor %}
+ {% endif %}
+
+
+ {% for cat, null in categories %}
+ -
+
+ {{ cat }}
+
+
+ {% endfor %}
+
+
+
+ {% for tag in tag_cloud %}
+ -
+
+ {{ tag.0 }}
+
+
+ {% endfor %}
+
+
+
+ {% include 'twitter_profile.html' %}
+ {% include 'search_sidebar.html' %}
+
+ {% if SIDEBAR_CUSTOM %}
+ {{ SIDEBAR_CUSTOM }}
+ {% endif %}
+