2019-03-18 09:50:05 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block footer %}
|
|
|
|
|
|
|
|
{% import "partials/language.html" as lang with context %}
|
|
|
|
|
|
|
|
<!-- Application footer -->
|
|
|
|
<footer class="md-footer">
|
|
|
|
|
|
|
|
<!-- 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 %}
|
|
|
|
<div class="md-footer-copyright__highlight">
|
|
|
|
{{ config.copyright }}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
powered by
|
2019-05-03 10:14:04 +00:00
|
|
|
<a href="https://www.mkdocs.org" title="MkDocs">MkDocs</a>
|
2019-03-18 09:50:05 +00:00
|
|
|
and
|
2019-05-03 10:14:04 +00:00
|
|
|
<a href="https://squidfunk.github.io/mkdocs-material/"
|
2019-03-18 09:50:05 +00:00
|
|
|
title="Material for MkDocs">
|
|
|
|
Material for MkDocs</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Social links -->
|
|
|
|
{% block social %}
|
|
|
|
{% include "partials/social.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
{% endblock %}
|