aboutsummaryrefslogtreecommitdiffstats
path: root/docs/_better_theme/relbar.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/_better_theme/relbar.html')
-rw-r--r--docs/_better_theme/relbar.html52
1 files changed, 52 insertions, 0 deletions
diff --git a/docs/_better_theme/relbar.html b/docs/_better_theme/relbar.html
new file mode 100644
index 0000000..6dc8b46
--- /dev/null
+++ b/docs/_better_theme/relbar.html
@@ -0,0 +1,52 @@
+{%- macro rellink_markup() %}
+ <nav id="rellinks">
+ <ul>
+ {%- if prev %}
+ <li>
+ &larr;
+ <a href="{{ prev.link|e }}" title="Previous document">{{ prev.title }}</a>
+ </li>
+ {%- endif %}
+ {%- if next %}
+ <li>
+ <a href="{{ next.link|e }}" title="Next document">{{ next.title }}</a>
+ &rarr;
+ </li>
+ {%- endif %}
+ </ul>
+ </nav>
+{%- endmacro %}
+
+{%- macro breadcrumbs_markup() %}
+ <nav id="breadcrumbs">
+ <ul>
+ {%- block rootrellink %}
+ <li><a href="{{ pathto(master_doc) }}">{{ shorttitle|e }}</a></li>
+ {%- endblock %}
+ {%- for parent in parents %}
+ <li>
+ <a href="{{ parent.link|e }}">{{ parent.title }}</a>
+ </li>
+ {%- endfor %}
+ {%- block relbaritems %} {% endblock %}
+ </ul>
+ </nav>
+{%- endmacro %}
+
+{%- macro relbar_top() %}
+ {%- if theme_showrelbartop|tobool %}
+ <div class="related top">
+ {{- rellink_markup () }}
+ {{- breadcrumbs_markup() }}
+ </div>
+ {%- endif %}
+{%- endmacro %}
+
+{%- macro relbar_bottom() %}
+ {%- if theme_showrelbarbottom|tobool %}
+ <div class="related bottom">
+ {{- rellink_markup () }}
+ {{- breadcrumbs_markup() }}
+ </div>
+ {%- endif %}
+{%- endmacro %}