Mercurial > mxd2map
annotate doku/source/_templates/layout.html @ 356:1e0c7e134e7b tip
Update contact details
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Mon, 04 Jan 2021 15:52:40 +0100 |
parents | 00a39e8b6eed |
children |
rev | line source |
---|---|
188
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
1 {% extends "!layout.html" %} |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
2 |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
3 {% block extrahead %} |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
4 {{ super() }} |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
5 {%- if not embedded %} |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
6 <style type="text/css"> |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
7 table.right { float: right; margin-left: 20px; } |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
8 table.right td { border: 1px solid #ccc; } |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
9 </style> |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
10 {%- endif %} |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
11 {% endblock %} |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
12 |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
13 {% block header %} |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
14 <div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px"> |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
15 <a href="{{ pathto('index') }}"> |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
16 <img src="{{ pathto("_static/logo_wide.png", 1) }}" alt="MXD2map logo" /> |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
17 </a> |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
18 </div> |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
19 {% endblock %} |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
20 |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
21 {% block rootrellink %} |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
22 <li><a href="http://mxd2map.org">MXD2map website</a> | </li> |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
23 <li><a href="{{ pathto('index') }}">Contents</a></li> |
43f1cbdcd597
Modified and beautified the documentation:
Stephan Holl <stephan.holl@intevation.de>
parents:
diff
changeset
|
24 {% endblock %} |
235
00a39e8b6eed
* INSTALL.txt: Added a paragraph to make the env-vars available in Apache
Stephan Holl <stephan.holl@intevation.de>
parents:
188
diff
changeset
|
25 |
00a39e8b6eed
* INSTALL.txt: Added a paragraph to make the env-vars available in Apache
Stephan Holl <stephan.holl@intevation.de>
parents:
188
diff
changeset
|
26 {% block footer %} |
00a39e8b6eed
* INSTALL.txt: Added a paragraph to make the env-vars available in Apache
Stephan Holl <stephan.holl@intevation.de>
parents:
188
diff
changeset
|
27 <div class="footer"> |
00a39e8b6eed
* INSTALL.txt: Added a paragraph to make the env-vars available in Apache
Stephan Holl <stephan.holl@intevation.de>
parents:
188
diff
changeset
|
28 Version {{ release }} | |
00a39e8b6eed
* INSTALL.txt: Added a paragraph to make the env-vars available in Apache
Stephan Holl <stephan.holl@intevation.de>
parents:
188
diff
changeset
|
29 (©) {{ copyright }} | |
00a39e8b6eed
* INSTALL.txt: Added a paragraph to make the env-vars available in Apache
Stephan Holl <stephan.holl@intevation.de>
parents:
188
diff
changeset
|
30 Last updated: {{ last_updated }} |
00a39e8b6eed
* INSTALL.txt: Added a paragraph to make the env-vars available in Apache
Stephan Holl <stephan.holl@intevation.de>
parents:
188
diff
changeset
|
31 </div> |
00a39e8b6eed
* INSTALL.txt: Added a paragraph to make the env-vars available in Apache
Stephan Holl <stephan.holl@intevation.de>
parents:
188
diff
changeset
|
32 {% endblock %} |