mirror of
https://github.com/pi-hole/docs.git
synced 2026-02-14 23:18:30 +00:00
60 lines
2.2 KiB
HTML
60 lines
2.2 KiB
HTML
{% import "partials/language.html" as lang with context %}
|
|
<footer class="md-footer">
|
|
{% if page.previous_page or page.next_page %}
|
|
<div class="md-footer-nav">
|
|
<nav class="md-footer-nav__inner md-grid" aria-label="{{ lang.t('footer.title') }}">
|
|
{% if page.previous_page %}
|
|
<a href="{{ page.previous_page.url | url }}" class="md-footer-nav__link md-footer-nav__link--prev" rel="prev">
|
|
<div class="md-footer-nav__button md-icon">
|
|
{% include ".icons/material/arrow-left.svg" %}
|
|
</div>
|
|
<div class="md-footer-nav__title">
|
|
<div class="md-ellipsis">
|
|
<span class="md-footer-nav__direction">
|
|
{{ lang.t("footer.previous") }}
|
|
</span>
|
|
{{ page.previous_page.title }}
|
|
</div>
|
|
</div>
|
|
</a>
|
|
{% endif %}
|
|
{% if page.next_page %}
|
|
<a href="{{ page.next_page.url | url }}" class="md-footer-nav__link md-footer-nav__link--next" rel="next">
|
|
<div class="md-footer-nav__title">
|
|
<div class="md-ellipsis">
|
|
<span class="md-footer-nav__direction">
|
|
{{ lang.t("footer.next") }}
|
|
</span>
|
|
{{ page.next_page.title }}
|
|
</div>
|
|
</div>
|
|
<div class="md-footer-nav__button md-icon">
|
|
{% include ".icons/material/arrow-right.svg" %}
|
|
</div>
|
|
</a>
|
|
{% endif %}
|
|
</nav>
|
|
</div>
|
|
{% endif %}
|
|
<div class="md-footer-meta md-typeset">
|
|
<div class="md-footer-meta__inner md-grid">
|
|
<div class="md-footer-copyright">
|
|
{% if config.copyright %}
|
|
<div class="md-footer-copyright__highlight">
|
|
{{ config.copyright }}
|
|
</div>
|
|
{% endif %}
|
|
Made with
|
|
<a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
|
|
Material for MkDocs
|
|
</a>
|
|
<br>
|
|
<a href="https://www.netlify.com" target="_blank" rel="noreferrer">
|
|
This site is powered by Netlify
|
|
</a>
|
|
</div>
|
|
{% include "partials/social.html" %}
|
|
</div>
|
|
</div>
|
|
</footer>
|