diff --git a/_includes/layout/base/breadcrumbs.html b/_includes/layout/base/breadcrumbs.html
new file mode 100644
index 00000000..fd2f430d
--- /dev/null
+++ b/_includes/layout/base/breadcrumbs.html
@@ -0,0 +1,28 @@
+{% comment %}
+This file is licensed under the MIT License (MIT) available on
+http://opensource.org/licenses/MIT.
+{% endcomment %}
+
+
+ {% for crumb in page.breadcrumbs %}
+ {% if forloop.last %}
+ {% case crumb %}
+ {% when "GLOSSARY_ENTRY_TITLE" %}
+ {% comment %} ## Only show first synonym in crumb ## {% endcomment %}
+ {% for synonym in page.required.synonyms_shown_in_glossary_capitalize_first_letter %}
+ {% if forloop.first %}{{synonym}}{% endif %}
+ {% endfor %}
+ {% else %}{{crumb}}
+ {% endcase %}
+ {% else %}
+ {% case crumb %}
+ {% comment %}/// Alphabetical order by crumb \\\{% endcomment %}
+ {% when "bitcoin" %}
{% translate bitcoin vocabulary %}
+ {% when "dev docs" %}
Dev Docs
+ {% when "glossary" %}
Glossary
+ {% else %}{% die "Breadcrumb not found in _includes/layout/breadcrumbs.html" %}
+ {% endcase %}
+ >
+ {% endif %}
+ {% endfor %}
+
diff --git a/_layouts/base.html b/_layouts/base.html
index 110a9125..6996621a 100644
--- a/_layouts/base.html
+++ b/_layouts/base.html
@@ -22,6 +22,7 @@
+ {% include layout/base/breadcrumbs.html %}
{% include layout/base/content.html %}