diff --git a/themes/yunohost-docs/templates/partials/breadcrumbs.html.twig b/themes/yunohost-docs/templates/partials/breadcrumbs.html.twig
new file mode 100644
index 00000000..2a2241f6
--- /dev/null
+++ b/themes/yunohost-docs/templates/partials/breadcrumbs.html.twig
@@ -0,0 +1,38 @@
+{% set crumbs = breadcrumbs.get() %}
+{% set breadcrumbs_config = config.plugins.breadcrumbs %}
+{% set divider = breadcrumbs_config.icon_divider_classes %}
+
+{% if crumbs|length > 1 or breadcrumbs_config.show_all %}
+
+ {% if breadcrumbs_config.icon_home %}
+
+ {% endif %}
+ {% for crumb in crumbs %}
+
+ {% if not loop.last %}
+ {% if crumb.routable %}
+
+ {{ crumb.menu }}
+
+ {% else %}
+
+ {{ crumb.menu }}
+
+ {% endif %}
+
+ {% else %}
+ {% if breadcrumbs_config.link_trailing %}
+
+ {{ crumb.menu }}
+
+ {% else %}
+
+ {{ crumb.menu }}
+
+ {% endif %}
+ {% endif %}
+
+
+ {% endfor %}
+
+{% endif %}
diff --git a/themes/yunohost-docs/templates/partials/topbar.html.twig b/themes/yunohost-docs/templates/partials/topbar.html.twig
new file mode 100644
index 00000000..39bd21c0
--- /dev/null
+++ b/themes/yunohost-docs/templates/partials/topbar.html.twig
@@ -0,0 +1,30 @@
+
+ {% if github_link_position == 'top' %}
+
+ {% include 'partials/github-link.html.twig' %}
+
+ {% endif %}
+
+ {% if config.plugins.breadcrumbs.enabled %}
+ {% include 'partials/breadcrumbs.html.twig' %}
+ {% endif %}
+
+
+ {% if theme_var('github.link') %}
+ {% include 'partials/github-link.html.twig' %}
+ {% endif %}
+ {% if not progress.isFirst(page.path) %}
+
+ {% else %}
+
+ {% endif %}
+ {% if not progress.isLast(page.path) %}
+
+ {% else %}
+
+ {% endif %}
+
+
+
+
+