add footer override

Dieser Commit ist enthalten in:
Niklas Meyer 2022-02-02 16:52:50 +01:00
Ursprung 1a273ca61d
Commit 6be7cdc7e8
2 geänderte Dateien mit 12 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -8,6 +8,7 @@ remote_branch: gh-pages
theme:
name: material
custom_dir: overrides
logo: assets/images/logo.svg
favicon: assets/images/favicon.png
features:

Datei anzeigen

@ -0,0 +1,11 @@
{% block footer %}
<hr>
<p>{% if config.copyright %}
<small>{{ config.copyright }}<br></small>
{% endif %}
<small>Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</small>
{% if page.meta.revision_date %}
<small><br><i>Updated {{ page.meta.revision_date }}</i></small>
{% endif %}
</p>
{% endblock %}