1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
{% extends "!layout.html" %}
{%- block extrahead %}
{{ super() }}
{% endblock %}
{% block relbar1 %}
<style type="text/css">
.header a:link{color: white;}
.header a:visited{color: white;}
.padded{padding: 10px 10px;}
</style>
{{ super() }}
{% endblock %}
{% block footer %}
<div class="footer">
<p>© Copyright {{ copyright }}<br/>Last updated on {{ last_updated }}</p>
<p>
<a href="https://pycsw.org">Website</a> —
<a href="https://pycsw.org/community">Community</a> —
<a href="https://pycsw.org/blog">Blog</a> —
<a href="https://plus.google.com/communities/104084873011085696113">Google+</a> —
<a href="https://pycsw.org/download">Download</a> —
<a href="https://github.com/geopython/pycsw">Source</a> —
<a href="https://github.com/geopython/pycsw/issues">Issues</a> —
<a href="http://lists.osgeo.org/mailman/listinfo/pycsw-devel">Mailing List</a>
</p>
</div>
{% endblock %}
|