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

39 lines
1.5 KiB
HTML
Raw Normal View History

2016-08-07 18:01:56 +02:00
<footer class="md-footer">
{% if previous_page or next_page %}
<div class="md-footer-pagination">
<nav class="md-footer-nav md-grid">
2016-08-07 18:01:56 +02:00
{% if previous_page %}
<a href="{{ previous_page.url }}" title="{{ previous_page.title }}" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev">
<div class="md-flex__cell md-flex__cell--shrink">
<i class="md-icon md-icon--back md-footer-nav__icon"></i>
2016-01-28 23:27:15 +01:00
</div>
2016-08-07 18:01:56 +02:00
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
<span class="md-flex__ellipsis">
<span class="md-footer-nav__direction">
Previous
</span>
2016-01-28 23:27:15 +01:00
{{ previous_page.title }}
2016-08-07 18:01:56 +02:00
</span>
2016-01-28 23:27:15 +01:00
</div>
2016-08-07 18:01:56 +02:00
</a>
{% endif %}
{% if next_page %}
<a href="{{ next_page.url }}" title="{{ next_page.title }}" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next">
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
<span class="md-flex__ellipsis">
<span class="md-footer-nav__direction">
Next
</span>
2016-01-28 23:27:15 +01:00
{{ next_page.title }}
2016-08-07 18:01:56 +02:00
</span>
2016-01-28 23:27:15 +01:00
</div>
2016-08-07 18:01:56 +02:00
<div class="md-flex__cell md-flex__cell--shrink">
<i class="md-icon md-icon--forward md-footer-nav__icon"></i>
2016-01-28 23:27:15 +01:00
</div>
2016-08-07 18:01:56 +02:00
</a>
{% endif %}
</nav>
2016-01-28 23:27:15 +01:00
</div>
2016-08-07 18:01:56 +02:00
{% endif %}
2016-09-23 11:56:25 +02:00
</footer>