changed footer replacement to copyright replacement

Dieser Commit ist enthalten in:
Niklas Meyer 2022-02-02 17:00:34 +01:00
Ursprung 6be7cdc7e8
Commit 2e922d6c95
3 geänderte Dateien mit 7 neuen und 12 gelöschten Zeilen

Datei anzeigen

@ -1,6 +1,6 @@
site_name: 'mailcow: dockerized documentation'
site_url: https://mailcow.github.io/mailcow-dockerized-docs/
copyright: "Copyright &copy; 2022 Servercow Team & Community <br>Last Updated: {{ git_revision_date }}"
copyright: "Copyright &copy; 2022 Servercow Team & Community"
repo_name: mailcow/mailcow-dockerized
repo_url: https://github.com/mailcow/mailcow-dockerized
edit_uri: ../mailcow-dockerized-docs/edit/master/docs/

Datei anzeigen

@ -0,0 +1,6 @@
{% extends "base.html" %}
{% block copyright %}
<p>Copyright © 2022 Servercow Team & Community</p><br>
<small><br><i>Updated {{ git_revision_date }}</i></small>
{% endblock %}

Datei anzeigen

@ -1,11 +0,0 @@
{% 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 %}