diff --git a/tool/template-base.html b/tool/template-base.html
index cde5dfaa83..927d6170ae 100644
--- a/tool/template-base.html
+++ b/tool/template-base.html
@@ -44,22 +44,7 @@
{% block breadcrumbs %}
-
- -
- {% if currentpage.funnel and currentpage != pages|selectattr('funnel', 'equalto', currentpage.funnel)|first %}
- - {{ currentpage.funnel }}
- {% endif %}
- {% if currentpage.doc_type and currentpage != pages|selectattr('doc_type', 'equalto', currentpage.doc_type)|first%}
- - {{ currentpage.doc_type }}
- {% endif %}
- {% if currentpage.category and currentpage != pages|selectattr('category', 'equalto', currentpage.category)|first %}
- - {{ currentpage.category }}
- {% endif %}
- {% if currentpage.subcategory and currentpage != pages|selectattr('subcategory', 'equalto', currentpage.subcategory)|first %}
- - {{ currentpage.subcategory }}
- {% endif %}
- - {{ currentpage.name }}
-
+ {% include 'template-breadcrumbs.html' %}
{% endblock %}
DRAFT PAGE
diff --git a/tool/template-breadcrumbs.html b/tool/template-breadcrumbs.html
new file mode 100644
index 0000000000..e04cfc7da8
--- /dev/null
+++ b/tool/template-breadcrumbs.html
@@ -0,0 +1,16 @@
+
+ -
+ {% if currentpage.funnel and currentpage != pages|selectattr('funnel', 'equalto', currentpage.funnel)|first %}
+ - {{ currentpage.funnel }}
+ {% endif %}
+ {% if currentpage.doc_type and currentpage != pages|selectattr('doc_type', 'equalto', currentpage.doc_type)|first%}
+ - {{ currentpage.doc_type }}
+ {% endif %}
+ {% if currentpage.category and currentpage != pages|selectattr('category', 'equalto', currentpage.category)|first %}
+ - {{ currentpage.category }}
+ {% endif %}
+ {% if currentpage.subcategory and currentpage != pages|selectattr('subcategory', 'equalto', currentpage.subcategory)|first %}
+ - {{ currentpage.subcategory }}
+ {% endif %}
+ - {{ currentpage.name }}
+