2016-08-07 19:01:56 +03:00
|
|
|
<!--
|
2017-01-06 21:11:18 +03:00
|
|
|
Copyright (c) 2016-2017 Martin Donath <martin.donath@squidfunk.com>
|
2016-01-29 01:27:15 +03:00
|
|
|
|
2016-08-07 19:01:56 +03:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to
|
|
|
|
deal in the Software without restriction, including without limitation the
|
|
|
|
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
IN THE SOFTWARE.
|
|
|
|
-->
|
|
|
|
|
2017-01-06 20:48:32 +03:00
|
|
|
{% import "partials/i18n.html" as i18n %}
|
|
|
|
|
2016-08-07 19:01:56 +03:00
|
|
|
<!-- Application footer -->
|
|
|
|
<footer class="md-footer">
|
|
|
|
|
2016-12-26 20:26:34 +03:00
|
|
|
<!-- Link to previous and/or next page -->
|
|
|
|
{% if page.previous_page or page.next_page %}
|
|
|
|
<div class="md-footer-nav">
|
|
|
|
<nav class="md-footer-nav__inner md-grid">
|
2016-08-07 19:01:56 +03:00
|
|
|
|
|
|
|
<!-- Link to previous page -->
|
2016-12-15 18:43:40 +03:00
|
|
|
{% if page.previous_page %}
|
2017-01-06 20:52:12 +03:00
|
|
|
<a href="{{ page.previous_page.url }}"
|
|
|
|
title="{{ page.previous_page.title }}"
|
2016-08-07 19:01:56 +03:00
|
|
|
class="md-flex md-footer-nav__link md-footer-nav__link--prev"
|
|
|
|
rel="prev">
|
|
|
|
<div class="md-flex__cell md-flex__cell--shrink">
|
2016-12-26 20:26:34 +03:00
|
|
|
<i class="md-icon md-footer-nav__icon">arrow_back</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-01-06 20:48:32 +03:00
|
|
|
{{ i18n.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-01-29 01:27:15 +03:00
|
|
|
|
2016-08-07 19:01:56 +03:00
|
|
|
<!-- Link to next page -->
|
2016-12-15 18:43:40 +03:00
|
|
|
{% if page.next_page %}
|
|
|
|
<a href="{{ page.next_page.url }}" title="{{ page.next_page.title }}"
|
2016-08-07 19:01:56 +03:00
|
|
|
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">
|
2017-01-06 20:48:32 +03:00
|
|
|
{{ i18n.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">
|
2016-12-26 20:26:34 +03:00
|
|
|
<i class="md-icon md-footer-nav__icon">arrow_forward</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 %}
|
|
|
|
|
|
|
|
<!-- Further information -->
|
|
|
|
<div class="md-footer-meta md-typeset">
|
|
|
|
<div class="md-footer-meta__inner md-grid">
|
|
|
|
|
|
|
|
<!-- Copyright and theme information -->
|
|
|
|
<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
|
|
|
<!-- Social links -->
|
|
|
|
{% 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>
|