2019-09-28 20:42:54 +03:00
|
|
|
{#-
|
|
|
|
This file was automatically generated - do not edit
|
|
|
|
-#}
|
2019-06-15 16:16:14 +03:00
|
|
|
{% import "partials/language.html" as lang with context %}
|
|
|
|
<footer class="md-footer">
|
|
|
|
{% if page.previous_page or page.next_page %}
|
2021-02-23 01:05:09 +03:00
|
|
|
<nav class="md-footer__inner md-grid" aria-label="{{ lang.t('footer.title') }}">
|
|
|
|
{% if page.previous_page %}
|
|
|
|
<a href="{{ page.previous_page.url | url }}" class="md-footer__link md-footer__link--prev" rel="prev">
|
|
|
|
<div class="md-footer__button md-icon">
|
|
|
|
{% include ".icons/material/arrow-left.svg" %}
|
|
|
|
</div>
|
|
|
|
<div class="md-footer__title">
|
|
|
|
<div class="md-ellipsis">
|
|
|
|
<span class="md-footer__direction">
|
|
|
|
{{ lang.t("footer.previous") }}
|
|
|
|
</span>
|
|
|
|
{{ page.previous_page.title }}
|
2019-06-15 16:16:14 +03:00
|
|
|
</div>
|
2021-02-23 01:05:09 +03:00
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
{% if page.next_page %}
|
|
|
|
<a href="{{ page.next_page.url | url }}" class="md-footer__link md-footer__link--next" rel="next">
|
|
|
|
<div class="md-footer__title">
|
|
|
|
<div class="md-ellipsis">
|
|
|
|
<span class="md-footer__direction">
|
|
|
|
{{ lang.t("footer.next") }}
|
|
|
|
</span>
|
|
|
|
{{ page.next_page.title }}
|
2020-02-24 20:07:50 +03:00
|
|
|
</div>
|
2021-02-23 01:05:09 +03:00
|
|
|
</div>
|
|
|
|
<div class="md-footer__button md-icon">
|
|
|
|
{% include ".icons/material/arrow-right.svg" %}
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
</nav>
|
2019-06-15 16:16:14 +03:00
|
|
|
{% 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">
|
2019-06-15 16:23:03 +03:00
|
|
|
{{ config.copyright }}
|
2019-06-15 16:16:14 +03:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2020-04-04 18:43:56 +03:00
|
|
|
Made with
|
2019-12-25 17:09:36 +03:00
|
|
|
<a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
|
2019-11-26 12:03:53 +03:00
|
|
|
Material for MkDocs
|
|
|
|
</a>
|
2019-06-15 16:16:14 +03:00
|
|
|
</div>
|
|
|
|
{% include "partials/social.html" %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</footer>
|