From 3101a02532fa498cdf04207e9b3a71060839998c Mon Sep 17 00:00:00 2001 From: Albert Avetisian Date: Sat, 11 Mar 2023 12:13:33 -0500 Subject: [PATCH] Add timestamps at the bottom of each page to see last updated (#1567) nice to have, to see when each page was last updated? could be helpful to find stale docs. references - https://github.com/readthedocs/sphinx_rtd_theme/pull/897#issuecomment-661741952 - https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_last_updated_fmt --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index 3185df766fffb..1ebc3260d005f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,6 +30,7 @@ release = version html_title = project + " " + version +html_last_updated_fmt = '%b %d, %Y' # -- General configuration ---------------------------------------------------