-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtitle.html
87 lines (78 loc) · 2.72 KB
/
title.html
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<title>Legend</title>
<style>
html, body {
font-size: 8pt;
font-family: "Open Sans", sans-serif;
width: 110mm;
}
.h1 {
text-align: center;
font-size: 26pt;
font-weight: bold;
margin: 1em 0;
}
.h2 {
font-size: 14pt;
font-weight: normal;
margin-top: 0.5em;
margin-bottom: 0.25em;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
a {
color: unset;
text-decoration: none; /* no underline */
}
.info-table {
margin-top: 0.5em;
border-collapse: collapse;
}
.info-label {
white-space: nowrap;
vertical-align: top;
padding-right: 0.5em;
}
</style>
</head>
<body>
<!-- Needed for QGIS to make margin-top work for the title -->
<div style="font-size: 0pt"> </div>
<p class="h1">[[TITLE OF THE MAP]]</p>
<p class="h2">Information</p>
[[ADD INFOS HERE]]
<p class="h2">Copyright</p>
<p>
This map is based on public data from the community-driven OpenStreetMap project (<a
href="https://www.openstreetmap.org">osm.org</a>).
Wrong, inaccurate or missing data can be reported online or edited by yourself using appropriate desktop,
browser or mobile apps.
</p>
<p>
OSM data is licensed under the ODbL 1.0, the map style under the GPL 3.0.
This explicitly <i>allows</i> you to modify, copy and redistribute the data in compliance with the ODbL and GPL.
</p>
<table class="info-table">
<tr>
<td class="info-label">Map data:</td>
<td>© OpenStreetMap contributors (<a
href="https://osm.org/copyright">openstreetmap.org/copyright</a>), © MapTiler
</td>
</tr>
<tr>
<td class="info-label">Map style:</td>
<td><i>Outdoor and Hiking map</i> by Hauke Stieler (<a
href="https://github.com/hauke96/qgis-outdoor-map">github.com/hauke96/qgis-outdoor-map</a>)
</td>
</tr>
<tr>
<td class="info-label">License:</td>
<td>Open Data Commons Open Database License (ODbL)</td>
</tr>
</table>
</body>
</html>