1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-14 19:07:41 +01:00
mkdocs-material/material/footer.html

42 lines
1.3 KiB
HTML
Raw Normal View History

2016-01-28 23:27:15 +01:00
{% if include_next_prev %}
<nav class="pagination" aria-label="Footer">
2016-01-28 23:27:15 +01:00
<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>
2016-01-28 23:27:15 +01:00
<div class="page">
2016-02-04 15:03:20 +01:00
<div class="button button-previous" role="button" aria-label="Previous">
2016-01-28 23:27:15 +01:00
<i class="icon icon-back"></i>
</div>
<div class="stretch">
<div class="title">
{{ previous_page.title }}
</div>
</div>
</div>
</a>
{% endif %}
</div>
<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>
2016-01-28 23:27:15 +01:00
<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 %}