2017-01-13 02:31:37 +03:00
|
|
|
{% import "partials/language.html" as lang %}
|
2016-08-07 19:01:56 +03:00
|
|
|
<footer class="md-footer">
|
2016-12-26 20:26:34 +03:00
|
|
|
{% if page.previous_page or page.next_page %}
|
|
|
|
<div class="md-footer-nav">
|
|
|
|
<nav class="md-footer-nav__inner md-grid">
|
2016-12-15 18:43:40 +03:00
|
|
|
{% if page.previous_page %}
|
|
|
|
<a href="{{ page.previous_page.url }}" title="{{ page.previous_page.title }}" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev">
|
2016-08-07 19:01:56 +03:00
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
2017-01-14 22:13:10 +03:00
|
|
|
<i class="md-icon md-icon--arrow-back md-footer-nav__button"></i>
|
2016-01-29 01:27:15 +03:00
|
|
|
</div>
|
2016-08-07 19:01:56 +03: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">
|
2017-06-01 23:17:08 +03:00
|
|
|
{{ lang.t("footer.previous") }}
|
2016-08-07 19:01:56 +03:00
|
|
|
</span>
|
2016-12-15 18:43:40 +03:00
|
|
|
{{ page.previous_page.title }}
|
2016-08-07 19:01:56 +03:00
|
|
|
</span>
|
2016-01-29 01:27:15 +03:00
|
|
|
</div>
|
2016-08-07 19:01:56 +03:00
|
|
|
</a>
|
|
|
|
{% endif %}
|
2016-12-15 18:43:40 +03:00
|
|
|
{% if page.next_page %}
|
|
|
|
<a href="{{ page.next_page.url }}" title="{{ page.next_page.title }}" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next">
|
2016-08-07 19:01:56 +03: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">
|
2017-06-01 23:17:08 +03:00
|
|
|
{{ lang.t("footer.next") }}
|
2016-08-07 19:01:56 +03:00
|
|
|
</span>
|
2016-12-15 18:43:40 +03:00
|
|
|
{{ page.next_page.title }}
|
2016-08-07 19:01:56 +03:00
|
|
|
</span>
|
2016-01-29 01:27:15 +03:00
|
|
|
</div>
|
2016-08-07 19:01:56 +03:00
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
2017-01-14 22:13:10 +03:00
|
|
|
<i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i>
|
2016-01-29 01:27:15 +03:00
|
|
|
</div>
|
2016-08-07 19:01:56 +03:00
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
</nav>
|
2016-12-26 20:26:34 +03:00
|
|
|
</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 %}
|
2017-01-03 22:57:59 +03:00
|
|
|
<div class="md-footer-copyright__highlight">
|
2016-12-26 20:26:34 +03:00
|
|
|
{{ config.copyright }}
|
2017-01-03 22:57:59 +03:00
|
|
|
</div>
|
2016-12-26 20:26:34 +03:00
|
|
|
{% endif %}
|
|
|
|
powered by
|
2017-01-06 20:52:12 +03:00
|
|
|
<a href="http://www.mkdocs.org" title="MkDocs">MkDocs</a>
|
2016-12-29 12:27:25 +03:00
|
|
|
and
|
2017-01-06 20:52:12 +03:00
|
|
|
<a href="http://squidfunk.github.io/mkdocs-material/" title="Material for MkDocs">
|
2016-12-29 12:27:25 +03:00
|
|
|
Material for MkDocs</a>
|
2016-12-26 20:26:34 +03:00
|
|
|
</div>
|
2017-01-04 22:16:12 +03:00
|
|
|
{% block social %}
|
|
|
|
{% include "partials/social.html" %}
|
|
|
|
{% endblock %}
|
2016-12-26 20:26:34 +03:00
|
|
|
</div>
|
2016-10-23 20:31:54 +03:00
|
|
|
</div>
|
2016-09-23 12:56:25 +03:00
|
|
|
</footer>
|