X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/c2e85644c4128b2545fd4bbe0382f4e2e502bd83..refs/heads/master:/templates/base.html?ds=inline
diff --git a/templates/base.html b/templates/base.html
index b471f8d..eacc07e 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -3,7 +3,9 @@
+ {% block breadcrumb %}
+
+
+ {% for item in content_breadcrumb %}
+ {% if not forloop.last %}
+ {{ item.title }} >
+ {%else %}
+ {{ item.title }}
+ {% endif %}
+ {% endfor %}
+
+
+ {% endblock %}
+ {% block submenu %}
+ {% if content_submenu %}
+
+ {% endif %}
+ {% endblock %}
{% block content %}
{{ content }}
{% endblock %}