diff --git a/source/_layouts/post.html.twig b/source/_layouts/post.html.twig
index 732b471f..0bab6b99 100644
--- a/source/_layouts/post.html.twig
+++ b/source/_layouts/post.html.twig
@@ -1,5 +1,25 @@
{% extends 'default' %}
+{% block breadcrumb %}
+
+
+
+ -
+ Home
+ {% include "svg/chevron-right" with { class: 'text-grey-light mx-1', style: "height: 20px" } %}
+
+ -
+ Blog
+ {% include "svg/chevron-right" with { class: 'text-grey-light mx-1', style: "height: 20px" } %}
+
+ -
+ {{ page.title }}
+
+
+
+
+{% endblock %}
+
{% block content_wrapper %}
{% include 'post/header' %}
{% include 'post/intro-image' %}
diff --git a/source/_layouts/talk.html.twig b/source/_layouts/talk.html.twig
index bb312ed1..d78bcbd8 100644
--- a/source/_layouts/talk.html.twig
+++ b/source/_layouts/talk.html.twig
@@ -1,7 +1,29 @@
{% extends 'page' %}
+ {% block breadcrumb %}
+
+
+
+ -
+ Home
+ {% include "svg/chevron-right" with { class: 'text-grey-light mx-1', style: "height: 20px" } %}
+
+ -
+ Talks
+ {% include "svg/chevron-right" with { class: 'text-grey-light mx-1', style: "height: 20px" } %}
+
+ -
+ {{ page.title }}
+
+
+
+
+{% endblock %}
+
{% block content_wrapper %}
+
Abstract
+
{% block content %}{% endblock %}