-
Notifications
You must be signed in to change notification settings - Fork 2
/
footer.html
76 lines (69 loc) · 2.78 KB
/
footer.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
<html>
<head>
<meta charset="UTF-8">
<style>
.black_overlay {
display: none;
position: absolute;
top: 0%;
left: 0%;
width: 100%;
height: 100%;
background-color: white;
z-index: 1001;
-moz-opacity: 0.8;
opacity: .80;
filter: alpha(opacity=80);
}
.white_content {
display: none;
position: absolute;
top: 25%;
left: 15%;
width: 70%;
height: 50%;
padding: 16px;
border: 1px solid grey;
background-color: white;
z-index: 1002;
overflow: auto;
}
</style>
</head>
<body>
<footer>
© OpenGeoEdu 2018 | <!--<a href="https://www.auf.uni-rostock.de/footer/impressum/" target="_blank">Impressum / Datenschutz</a> |--> <a href="https://github.com/opengeoedu/opengeoedu.github.io/" target="_blank">Source Code</a> | <a href="javascript:void(0)" onclick="document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block'">Quellenhinweise</a> | <a href="http://www.opengeoedu.de/" target="_blank">OpenGeoEdu Website</a>
</footer>
<div id="light" class="white_content">
<p align="right">
<a href="javascript:void(0)" onclick="document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none'">X Fenster schließen</a>
</p>
<span align="left">
<h1>
Quellenhinweise
</h1>
<p>Diese Übersicht beruht auf folgenden externen Datenquellen:</p>
<ul>
<li><strong>Ortsnamen und Beschriftungen (Städte):</strong> <a href="http://www.geonames.org/export/">GeoNames Data</a>, lizensiert unter <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 License</a></li>
<li><strong>Verwaltungsgebiete (DE, AT, CH):</strong> <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, lizensiert unter <a href="https://opendatacommons.org/licenses/odbl/">Open Database License</a></li>
<li><strong>Geocoding Service (einmalige Geolokalisierung einzelner Portale):</strong> <a href="https://operations.osmfoundation.org/policies/nominatim/">Nomanitim</a></li>
<li><strong>Grundkarte:</strong> Positron von <a href="https://carto.com/attribution/">CartoDB</a>, abgeleitet von <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> Daten
</li>
</ul>
</span>
</div>
<div id="fade" class="black_overlay"></div>
<script>
/*var navbar = document.getElementById("navbar");
alert(navbar.id)
var navlinks = navbar.getElementsByTagName("a");
for (let i = 0; i < navlinks.length; i++){
var navlink = navlinks[i];
alert(navlink);
if(navlink.getAttribute("href").contains("#section-filter")){
alert("Jau");
};
} */
</script>
</body>
</html>