diff options
author | Derek Jones <derek.jones@ellislab.com> | 2011-10-07 17:35:03 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2011-10-07 17:35:03 +0200 |
commit | 6858c0753a7221796d6a5a1d7fea93cc2f9feb2e (patch) | |
tree | 55dbfd3998eb7ff7b646c22151b5a12ae7941cdf /user_guide_src | |
parent | aed7e48184a1e14d9551a5d65d1e73afcda016be (diff) |
added last updated date to footer
Diffstat (limited to 'user_guide_src')
-rw-r--r-- | user_guide_src/source/_themes/eldocs/layout.html | 2 | ||||
-rw-r--r-- | user_guide_src/source/conf.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/_themes/eldocs/layout.html b/user_guide_src/source/_themes/eldocs/layout.html index 4e083a1d3..da59e5302 100644 --- a/user_guide_src/source/_themes/eldocs/layout.html +++ b/user_guide_src/source/_themes/eldocs/layout.html @@ -125,7 +125,7 @@ {%- block footer %} <div id="footer"> <p class="top"><a href="#header" title="Return to top">Return to top</a></p> - <p><a href="{{ project_url }}">{{ project }}</a> – Copyright © {{ copyright }}</a></p> + <p><a href="{{ project_url }}">{{ project }}</a> – Copyright © {{ copyright }}</a> – Last updated: {{ last_updated }}</p> </div><!-- /#footer --> {%- endblock %} diff --git a/user_guide_src/source/conf.py b/user_guide_src/source/conf.py index cb28d21a1..bd5e65297 100644 --- a/user_guide_src/source/conf.py +++ b/user_guide_src/source/conf.py @@ -125,7 +125,7 @@ html_static_path = ['_static'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. -#html_last_updated_fmt = '%b %d, %Y' +html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. |