aboutsummaryrefslogtreecommitdiffstats
path: root/_better_theme/relbar.html
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2014-12-30 03:43:30 +0100
committerbnewbold <bnewbold@robocracy.org>2014-12-30 03:43:30 +0100
commit2a16ea2a9075229b2141c62697f4e1cabd4d2edd (patch)
tree65e184d0698eefd587b29c0644c2089ab9cdcfa9 /_better_theme/relbar.html
parent7131d99df20e1c2546452124ee52a95fa3ace97b (diff)
downloadfpga-lube-2a16ea2a9075229b2141c62697f4e1cabd4d2edd.tar.gz
fpga-lube-2a16ea2a9075229b2141c62697f4e1cabd4d2edd.zip
move stuff into 'docs' subfolder
Diffstat (limited to '_better_theme/relbar.html')
-rw-r--r--_better_theme/relbar.html52
1 files changed, 0 insertions, 52 deletions
diff --git a/_better_theme/relbar.html b/_better_theme/relbar.html
deleted file mode 100644
index 6dc8b46..0000000
--- a/_better_theme/relbar.html
+++ /dev/null
@@ -1,52 +0,0 @@
-{%- 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 %}