diff --git a/profiles/templates/profiles/base.html b/profiles/templates/profiles/base.html
new file mode 100644
index 0000000000000000000000000000000000000000..362ca9f534ba10b277a56b638b019ea549536b26
--- /dev/null
+++ b/profiles/templates/profiles/base.html
@@ -0,0 +1,13 @@
+{% extends 'scipost/base.html' %}
+
+{% block breadcrumb %}
+    <div class="container-outside header">
+        <div class="container">
+            <nav class="breadcrumb hidden-sm-down">
+                {% block breadcrumb_items %}
+                    <a href="{% url 'profiles:profiles' %}" class="breadcrumb-item">Profiles</a>
+                {% endblock %}
+            </nav>
+        </div>
+    </div>
+{% endblock %}
diff --git a/profiles/templates/profiles/profile_confirm_delete.html b/profiles/templates/profiles/profile_confirm_delete.html
index c10b167cfec795f86ed147b6c28ff1ad97837ede..471ec55535f3e5c98594c37352889f67c9069a97 100644
--- a/profiles/templates/profiles/profile_confirm_delete.html
+++ b/profiles/templates/profiles/profile_confirm_delete.html
@@ -1,7 +1,12 @@
-{% extends 'scipost/base.html' %}
+{% extends 'profiles/base.html' %}
 
 {% load bootstrap %}
 
+{% block breadcrumb_items %}
+    {{ block.super }}
+    <span class="breadcrumb-item">Delete {{ profile }}</span>
+{% endblock %}
+
 {% block pagetitle %}: Delete Profile{% endblock pagetitle %}
 
 {% block content %}
diff --git a/profiles/templates/profiles/profile_form.html b/profiles/templates/profiles/profile_form.html
index a59010e93828fcab346d8a8c0454f3f9d09771bf..e94df9dfc1589fce9b17a87b7c1c57172ba30aac 100644
--- a/profiles/templates/profiles/profile_form.html
+++ b/profiles/templates/profiles/profile_form.html
@@ -1,7 +1,12 @@
-{% extends 'scipost/base.html' %}
+{% extends 'profiles/base.html' %}
 
 {% load bootstrap %}
 
+{% block breadcrumb_items %}
+    {{ block.super }}
+    <span class="breadcrumb-item">{% if form.instance.id %}Update {{ form.instance }}{% else %}Add new Profile{% endif %}</span>
+{% endblock %}
+
 {% block pagetitle %}: Profiles{% endblock pagetitle %}
 
 {% block content %}
diff --git a/profiles/templates/profiles/profile_list.html b/profiles/templates/profiles/profile_list.html
index cd7817e24d9cb7fe59df992118efe3a095b92e5f..3f632260a68a7d4639c7e2daecf411720a13f3b6 100644
--- a/profiles/templates/profiles/profile_list.html
+++ b/profiles/templates/profiles/profile_list.html
@@ -1,9 +1,14 @@
-{% extends 'scipost/base.html' %}
-
-{% load scipost_extras %}
+{% extends 'scipost/_personal_page_base.html' %}
 
 {% load bootstrap %}
 
+{% block breadcrumb_items %}
+    {{ block.super }}
+    <span class="breadcrumb-item">Profiles</span>
+{% endblock %}
+
+{% load scipost_extras %}
+
 {% block pagetitle %}: Profiles{% endblock pagetitle %}
 
 {% block content %}