File: layout.html

package info (click to toggle)
pycsw 2.6.0%2Bdfsg-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bullseye
  • size: 10,980 kB
  • sloc: xml: 38,300; python: 11,330; makefile: 179; sh: 3
file content (34 lines) | stat: -rw-r--r-- 1,012 bytes parent folder | download | duplicates (3)
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>&copy; Copyright {{ copyright }}<br/>Last updated on {{ last_updated }}</p>
    <p>
        <a href="https://pycsw.org">Website</a> &mdash;
        <a href="https://pycsw.org/community">Community</a> &mdash;
        <a href="https://pycsw.org/blog">Blog</a> &mdash;
        <a href="https://plus.google.com/communities/104084873011085696113">Google+</a> &mdash;
        <a href="https://pycsw.org/download">Download</a> &mdash;
        <a href="https://github.com/geopython/pycsw">Source</a> &mdash;
        <a href="https://github.com/geopython/pycsw/issues">Issues</a> &mdash;
        <a href="http://lists.osgeo.org/mailman/listinfo/pycsw-devel">Mailing List</a>
    </p>
</div>
{% endblock %}