summaryrefslogtreecommitdiff
path: root/mkdocs-material/src/footer.html
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2018-08-27 19:13:42 -0400
committerJordan Wiens <jordan@psifertex.com>2018-08-27 19:13:42 -0400
commit867353b827eabb294f1cc8d0d825669cf64b7138 (patch)
treefdef5687b3ce7941104e6fa31763c1b08d0d82aa /mkdocs-material/src/footer.html
parentcbdf8b6925dcf4b5fd29868797fe0195de5680ee (diff)
switch from mkdocs-material to a custom readthedocs style for user docs as well
Diffstat (limited to 'mkdocs-material/src/footer.html')
-rw-r--r--mkdocs-material/src/footer.html48
1 files changed, 0 insertions, 48 deletions
diff --git a/mkdocs-material/src/footer.html b/mkdocs-material/src/footer.html
deleted file mode 100644
index 01251554..00000000
--- a/mkdocs-material/src/footer.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!-- Previous and next page -->
-{% if include_next_prev %}
- <nav class="pagination" aria-label="Footer">
-
- <!-- Previous page -->
- <div class="previous">
- {% if previous_page %}
- <a href="{{ previous_page.url }}" title="{{ previous_page.title }}">
- <span class="direction">
- {{ config.extra.get("i18n", {}).prev | default("Previous") }}
- </span>
- <div class="page">
- <div class="button button-previous"
- role="button" aria-label="Previous">
- <i class="icon icon-back"></i>
- </div>
- <div class="stretch">
- <div class="title">
- {{ previous_page.title }}
- </div>
- </div>
- </div>
- </a>
- {% endif %}
- </div>
-
- <!-- Next page -->
- <div class="next">
- {% if next_page %}
- <a href="{{ next_page.url }}" title="{{ next_page.title }}">
- <span class="direction">
- {{ config.extra.get("i18n", {}).next | default("Next") }}
- </span>
- <div class="page">
- <div class="stretch">
- <div class="title">
- {{ next_page.title }}
- </div>
- </div>
- <div class="button button-next" role="button" aria-label="Next">
- <i class="icon icon-forward"></i>
- </div>
- </div>
- </a>
- {% endif %}
- </div>
- </nav>
-{% endif %} \ No newline at end of file