X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/a2883504e45a556b06e76f023395e879e01ae03c..HEAD:/templates/base.html?ds=sidebyside
diff --git a/templates/base.html b/templates/base.html
index 384e601..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 %}