We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 634b940 commit 7d55d43Copy full SHA for 7d55d43
doc/_templates/pandas_footer.html
@@ -1,3 +1,3 @@
1
<p class="copyright">
2
- © {{copyright}} pandas via <a href="https://numfocus.org">NumFOCUS, Inc.</a> Hosted by <a href="https://www.ovhcloud.com">OVHcloud</a>.
+ © {{footer}}
3
</p>
doc/source/conf.py
@@ -375,11 +375,15 @@
375
import os
376
os.chdir(r'{os.path.dirname(os.path.dirname(__file__))}')
377
"""
378
+footer = f"""{datetime.now().year}
379
+pandas via <a href="https://numfocus.org">NumFOCUS, Inc.
380
+</a> Hosted by <a href="https://www.ovhcloud.com">OVHcloud</a>."""
381
382
383
html_context = {
384
"redirects": dict(moved_api_pages),
385
"header": header,
386
+ "footer": footer
387
}
388
389
# If false, no module index is generated.
0 commit comments