We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d36aeb commit afad673Copy full SHA for afad673
docs/_templates/versioning.html
@@ -0,0 +1,14 @@
1
+{% if versions %}
2
+<h3>{{ _('Branches') }}</h3>
3
+<ul>
4
+ {%- for item in versions.branches %}
5
+ <li><a href="{{ item.url }}">{{ item.name }}</a></li>
6
+ {%- endfor %}
7
+</ul>
8
+<h3>{{ _('Tags') }}</h3>
9
10
+ {%- for item in versions.tags %}
11
12
13
14
+{% endif %}
docs/conf.py
@@ -15,3 +15,19 @@
15
extensions = [
16
"sphinx_multiversion",
17
]
18
+
19
+templates_path = [
20
+ "_templates",
21
+]
22
23
+html_sidebars = {
24
+ "**": [
25
+ "about.html",
26
+ "navigation.html",
27
+ "relations.html",
28
+ "searchbox.html",
29
+ "versioning.html",
30
+ ],
31
+}
32
33
+mv_remote_whitelist = r"^origin$"
0 commit comments