aboutsummaryrefslogtreecommitdiff
path: root/docs/source/_templates/layout.html
diff options
context:
space:
mode:
authorHoward Butler <howard@hobu.co>2016-02-29 08:57:21 -0600
committerHoward Butler <howard@hobu.co>2016-02-29 08:57:21 -0600
commit109ebd60c5505cd5a55f5832e5e8805494ecfeb1 (patch)
treecf418571d76ff9dab38e8607200afa6f1e4cecad /docs/source/_templates/layout.html
parent5025bc670ea3790b30b7e3a536f83fd930246960 (diff)
parentc13f3d65a6af0d19cc993c889e4ea4e03a21bd51 (diff)
downloadPROJ-109ebd60c5505cd5a55f5832e5e8805494ecfeb1.tar.gz
PROJ-109ebd60c5505cd5a55f5832e5e8805494ecfeb1.zip
Merge branch 'hobu-docs-refactor'
Diffstat (limited to 'docs/source/_templates/layout.html')
-rw-r--r--docs/source/_templates/layout.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/source/_templates/layout.html b/docs/source/_templates/layout.html
new file mode 100644
index 00000000..df00789a
--- /dev/null
+++ b/docs/source/_templates/layout.html
@@ -0,0 +1,20 @@
+{# Import the theme's layout. #}
+{% extends "!layout.html" %}
+
+{# Add some extra stuff before and use existing with 'super()' call. #}
+
+{%- block footer %}
+ <div class="footer">
+ <div class="container">
+ &copy; {{ copyright }}
+ Gerald Evenden,
+ <a href="https://github.com/warmerdam">Frank Warmerdam</a>,
+ and
+ <a href="https://github.com/OSGeo/proj.4/graphs/contributors">others</a>,
+ {%- if last_updated %}
+ {% trans last_updated=last_updated|e %}Last updated
+ on {{ last_updated }}.{% endtrans %}
+ {%- endif %}
+ </div>
+ </div>
+{%- endblock %}