blob: df00789aedf1f1e740f9ff1b1346fcd22b1ffa46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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">
© {{ 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 %}
|