From 52d27d092fd1342cad4ee1b9afb93d2be2e4925e Mon Sep 17 00:00:00 2001 From: Jueun Park <s5616012@mailbox.tu-dresden.de> Date: Mon, 14 Mar 2022 15:36:11 +0900 Subject: [PATCH] add footer.html --- pages/custom_theme/footer.html | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pages/custom_theme/footer.html diff --git a/pages/custom_theme/footer.html b/pages/custom_theme/footer.html new file mode 100644 index 00000000..2d6c1646 --- /dev/null +++ b/pages/custom_theme/footer.html @@ -0,0 +1,11 @@ +{% block footer %} +<p>{% if config.copyright %} +<small>{{ config.copyright }}<br></small> +{% endif %} +<hr> +Built with <a href="https://www.mkdocs.org/">MkDocs</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>. +{% if page and page.meta and page.meta.git_revision_date_localized %} +<small><br><i>Last updated {{ page.meta.git_revision_date_localized }}</i></small> +{% endif %} +</p> +{% endblock %} -- GitLab