-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
130 lines (123 loc) · 4.63 KB
/
index.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>fuerth.io</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#009580">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimal-ui">
<meta name="format-detection" content="telephone=no">
<link rel="stylesheet" href="/assets/fonts/roboto.css">
<link rel="stylesheet" href="/assets/normalize.css">
<link rel="stylesheet" href="/assets/milligram.min.css">
<style>
body {
color: #414042;
}
a {
color: #009580;
}
header {
position: relative;
height: 300px;
width: 100%;
background-image: url(./Logo/fuerth-io-logo.svg);
background-size: contain;
background-repeat: no-repeat;
}
header > .title {
display: none;
}
header > .subtitle {
display: block;
font-weight: bold;
position: absolute;
bottom: 0px;
left: 0;
}
.list.horizontal {
list-style: none;
}
.list.horizontal li {
float: left;
margin: 0 1em;
}
@media screen and (min-width: 800px) {
body {
margin: 3em 0;
}
header > .subtitle {
position: absolute;
bottom: -32px;
left: 165px;
}
h2 {
margin-top: 2em;
}
h3 {
margin-top: 1em;
}
footer {
margin-top: 5em;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1 class="title">fuerth.io</h1>
<p class="subtitle">
Inoffizielles <a href="https://de.wikipedia.org/wiki/Open_Data" target="_blank">OpenData</a> Portal der <a href="https://www.fuerth.de" target="_blank">Stadt Fürth in Bayern</a>.
</p>
</header>
<nav>
<h2>Karten und andere Visualisierungen</h2>
<ul>
<!-- li><a href="./corona/" target="_blank">Aktuelle Daten zu Corona-Pandemie in Fürth</a></li -->
<li><a href="./Stadtrat/" target="_blank">Statistiken zum Stadtrat</a></li>
<li><a href="./Kommunalwahl/" target="_blank">Statistiken zur Kommunalwahl 2020</a></li>
<li><a href="./Maengelmelder/" target="_blank">Statistiken des Mängelmelders</a></li>
<!-- <li><a href="./AltSpeiseÖl/" target="_blank">Statistiken zur Alt-Speise-Öl Sammlung</a></li> -->
<li><a href="https://fuerthwiki.de/maps/radverkehr/" target="_blank">Karte Radverkehr</a></li>
</ul>
<h2>Offizielle Unterlagen</h2>
<h3>Fürth in Zahlen (PDF)</h3>
<ul class="list horizontal">
<li><a href="./Statistik/fuerth_in_zahlen/fuerth_in_zahlen_2010.pdf">2010</a></li>
<li><a href="./Statistik/fuerth_in_zahlen/fuerth_in_zahlen_2011.pdf">2011</a></li>
<li><a href="./Statistik/fuerth_in_zahlen/fuerth_in_zahlen_2012.pdf">2012</a></li>
<li><a href="./Statistik/fuerth_in_zahlen/fuerth_in_zahlen_2013.pdf">2013</a></li>
<li><a href="./Statistik/fuerth_in_zahlen/fuerth_in_zahlen_2014.pdf">2014</a></li>
<li><a href="./Statistik/fuerth_in_zahlen/fuerth_in_zahlen_2015.pdf">2015</a></li>
<li><a href="./Statistik/fuerth_in_zahlen/fuerth_in_zahlen_2016.pdf">2016</a></li>
<li><a href="./Statistik/fuerth_in_zahlen/fuerth_in_zahlen_2017.pdf">2017</a></li>
<li><a href="./Statistik/fuerth_in_zahlen/fuerth_in_zahlen_2018.pdf">2018</a></li>
<li><a href="./Statistik/fuerth_in_zahlen/fuerth_in_zahlen_2019.pdf">2019</a></li>
<li><a href="./Statistik/fuerth_in_zahlen/fuerth_in_zahlen_2020.pdf">2020</a></li>
<li><a href="./Statistik/fuerth_in_zahlen/fuerth_in_zahlen_2021.pdf">2021</a></li>
<li><a href="./Statistik/fuerth_in_zahlen/fuerth_in_zahlen_2022.pdf">2022</a></li>
<li><a href="./Statistik/fuerth_in_zahlen/fuerth_in_zahlen_2023.pdf">2023</a></li>
</ul>
</nav>
</div>
<footer class="footer">
<section class="container">
<p>
<em>Impressum</em>: <a href="//www.fullstax.de">fullstax Gmbh & Co. KG</a> | Weiherstr. 13 | 90762 Fürth | [email protected] <br/>
Dieses Werk ist lizenziert unter einer <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Namensnennung 4.0 International Lizenz</a>.
</p>
</section>
</footer>
<div style="position:absolute;right:0;top:0;">
<a href="https://github.com/mojoaxel/opendata-fuerth">
<img width="149" height="149" src="//github.blog/wp-content/uploads/2008/12/forkme_right_gray_6d6d6d.png?resize=149%2C149" class="attachment-full size-full" alt="Fork me on GitHub" data-recalc-dims="1">
</a>
</div>
</body>
</html>