diff --git a/source/_includes/sponsors-block.html.twig b/source/_includes/sponsors-block.html.twig
new file mode 100644
index 0000000..4db104a
--- /dev/null
+++ b/source/_includes/sponsors-block.html.twig
@@ -0,0 +1,28 @@
+
+
+ Our Sponsors
+
+
+ {% for level in site.sponsorship_levels %}
+ {% set sponsors = site.sponsors[level] %}
+ {% if sponsors %}
+
+ {{ level|capitalize }} Sponsors
+
+
+ {% for sponsor in sponsors %}
+
+
+
+
+
+ {% endfor %}
+
+
+ {% endif %}
+ {% endfor %}
+
+
+
diff --git a/source/_layouts/base.html.twig b/source/_layouts/base.html.twig
index 3a9311c..0970fe4 100644
--- a/source/_layouts/base.html.twig
+++ b/source/_layouts/base.html.twig
@@ -15,8 +15,10 @@
{% block content_botton %}{% endblock %}
{% if page.update_text %}
- {% include 'update-text' %}
+ {% include 'update-text' %}
{% endif %}
+
+ {% block content_bottom %}{% endblock %}