overrides: copyright partial with i18n

This commit is contained in:
plowsof 2024-08-18 16:11:37 +01:00
parent 6edf9af698
commit f2f2717297
2 changed files with 18 additions and 1 deletions

View file

@ -59,7 +59,7 @@ nav:
theme:
name: material
#custom_dir: mkdocs-material/material/overrides
custom_dir: overrides
features:
- announce.dismiss
- content.action.edit

View file

@ -0,0 +1,17 @@
<div class="md-copyright">
{% if config.copyright %}
<div class="md-copyright__highlight">
{{ config.copyright }}
</div>
{% endif %}
{% if not config.extra.generator == false %}
Made with
<a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
Material for MkDocs
</a>
and localized using the
<a href="https://ultrabug.github.io/mkdocs-static-i18n/" target="_blank" rel="noopener">
MkDocs Static i18n Plugin
</a>
{% endif %}
</div>