diff --git a/doc/_templates/pandas_footer.html b/doc/_templates/pandas_footer.html index 6d8caa4d6c741..af1c21989d1dd 100644 --- a/doc/_templates/pandas_footer.html +++ b/doc/_templates/pandas_footer.html @@ -1,3 +1 @@ -
- © {{copyright}} pandas via NumFOCUS, Inc. Hosted by OVHcloud. -
+{{footer}} diff --git a/doc/source/conf.py b/doc/source/conf.py index 66fca61c2c6e5..664a038c11d76 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -375,11 +375,16 @@ import os os.chdir(r'{os.path.dirname(os.path.dirname(__file__))}') """ +footer = f"""+ ©{datetime.now().year} + pandas via NumFOCUS, Inc. + Hosted by OVHcloud.
""" html_context = { "redirects": dict(moved_api_pages), "header": header, + "footer": footer } # If false, no module index is generated.