37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
|
{% 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
|
||
|
<a href="http://www.mkdocs.org" title="MkDocs">MkDocs</a>
|
||
|
and
|
||
|
<a href="http://squidfunk.github.io/mkdocs-material/"
|
||
|
title="Material for MkDocs">
|
||
|
Material for MkDocs</a>
|
||
|
</div>
|
||
|
|
||
|
<!-- Social links -->
|
||
|
{% block social %}
|
||
|
{% include "partials/social.html" %}
|
||
|
{% endblock %}
|
||
|
</div>
|
||
|
</div>
|
||
|
</footer>
|
||
|
|
||
|
{% endblock %}
|