diff --git a/docs/_templates/versioning.html b/docs/_templates/versioning.html
new file mode 100644
index 0000000..6f08447
--- /dev/null
+++ b/docs/_templates/versioning.html
@@ -0,0 +1,14 @@
+{% if versions %}
+
{{ _('Branches') }}
+
+{{ _('Tags') }}
+
+{% endif %}
diff --git a/docs/conf.py b/docs/conf.py
index dd85fd8..0ed77bb 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -15,3 +15,19 @@ templates_path = ["_templates"]
extensions = [
"sphinx_multiversion",
]
+
+templates_path = [
+ "_templates",
+]
+
+html_sidebars = {
+ "**": [
+ "about.html",
+ "navigation.html",
+ "relations.html",
+ "searchbox.html",
+ "versioning.html",
+ ],
+}
+
+mv_remote_whitelist = r"^origin$"