diff --git a/bootstrap2/templates/sidebar.html b/bootstrap2/templates/sidebar.html
new file mode 100644
index 0000000..fb94733
--- /dev/null
+++ b/bootstrap2/templates/sidebar.html
@@ -0,0 +1,43 @@
+
+{% if LINKS %}
+
+{% for name, link in LINKS %}
+ - {{ name }}
+{% endfor %}
+{% endif %}
+{% if SOCIAL %}
+
+- atom feed
+{% 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 %}
+
\ No newline at end of file