-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
199 lines (186 loc) · 8.2 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
---
layout: default
---
<div class="home">
<div class="darkcontainer"></div>
<div class="container">
<div class="row">
<div class="col-md-4">
<h2>Was ist das hier?</h2>
Wir sind eine Gruppe von Open-Data-Interessierten aus Ulm.
Unser Ziel ist es, gemeinsam diverse Datensätze unter offener Lizenz zu erhalten,
anschließend per <a href="https://de.wikipedia.org/wiki/Programmierschnittstelle">API</a>
für Drittanwendungen verfügbar zu machen und tolle Anwendungen daraus zu bauen.
</p>
<ul>
<li><b>Aktuelle Projekte und Informationen gibt es auf der Webseite und den Social-Media Auftritten unseres lokalen Hack- und Makespace, dem <a href="https://temporaerhaus.de/">temporärhaus</a>.</b></li>
<li>Auf <a href="https://github.com/UlmAPI">GitHub</a> finden sich einige unserer Projekte.</li>
<li>Wir bedienten außerdem einen <a href="https://twitter.com/UlmAPI">Twitter</a>-Account und <a href="https://www.facebook.com/datalove.ulm/">Facebook-Account</a>.</li>
</ul>
</div>
<div class="col-md-4">
<h2>Wer steckt dahinter?</h2>
<p>Für die wissenschaftliche und praktische Bearbeitung des Themas "Open Data"
wurde im Frühjahr 2011 die studentische datalove-Hochschulgruppe an der
<a href="http://www.uni-ulm.de/">Universität Ulm</a> gegründet und von der
Studierendenvertretung anerkannt.
</p>
<p>
UlmAPI.de besteht aber nicht nur aus Studierenden, sondern steht allen offen,
die sich für das Thema begeistern. Einfach mal bei einem unserer
Treffen vorbeischauen!
</p>
</div>
<div class="col-md-4">
<h2>Wie kann ich mitmachen?</h2>
<ul>
<li>
Schreibe Ideen, welche Daten und Anwendungen Du gerne hättest:
<!-- In unser <a href="http://wiki.ulmapi.de">Wiki</a>, über -->
Über das
<a href="https://docs.google.com/spreadsheet/viewform?hl=de_DE&formkey=dGN5UXFlSEZ6aGNtZTNrcmNfQnpWM0E6MQ">Formular</a>
hierfür oder auf die Mailingliste datalove at uni-ulm.de.
</li>
<li>
Falls Du Datenquellen hast:
<a href="https://docs.google.com/spreadsheet/viewform?hl=de_DE&formkey=dGN5UXFlSEZ6aGNtZTNrcmNfQnpWM0E6MQ">Erzähle</a>
uns davon!</li>
<li>
<p>
Komm einfach mal in unserem Hack- und Makespace in Neu-Ulm vorbei!<br />
Wir treffen uns regelmäßig um uns auszutauschen und an Projekten zu hacken.
</p>
</li>
</ul>
<div class="next-meeting">
<h4>Kommende Veranstaltungen und Termine</h4>
<p>
Siehe <a href="https://temporaerhaus.de/termine-und-oeffnungszeiten/">Events & Kalender</a> auf temporaerhaus.de. <br/>
<a href="https://www.openstreetmap.org/node/10889781438#map=18/48.39629/10.00199">temporärhaus im Zentrum Neu-Ulms</a>
</p>
</div>
</div> <!-- END span -->
</div> <!-- END row-->
</div> <!-- END CONTAINER -->
<div class="darkcontainer"></div>
<div class="container">
<div class="row-same-height row-centered">
<h2><a name="aktuelles"></a>Aktuelles</h2>
{% assign loopindex = 0 %}
{% for post in site.posts %}
{% if loopindex < site.amountofnews %} {% unless post.isarchive %}
{% assign loopindex=loopindex | plus:1 %}
{% assign testli=loopindex | modulo:4 %}
<div class="item col-md-3 col-sm-6 col-xs-12">
<div class="item-img">
{% if post.remote %}
{% if post.remote == "noremote" %}
{% else %}
<a href="{{ post.remote }}">
{% endif %}
{% else %}
<a href="{{ post.url | prepend: site.baseurl }}">
{% endif %}
<img width="220px" src="{{ post.img | prepend: site.baseurl }}" alt="{{ post.imgalt }}"
title="{{ post.title }}" />
</a>
</div>
<div class="desc{% if post.largedesc %}{{"-large"}}{% endif %}">
{% if post.remote %}
{{post.content}}
{% else %}
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title}}</a><br>
{% if post.nopreview %}
{%else%}
{{ post.excerpt }}
{%endif%}
{%endif%}
</div>
</div> <!-- END grid/grid-last -->
{% if testli == 0 %} {% endif %}
{% endunless %}{% endif %}
{% endfor %}
</div><!-- END row -->
</div><!-- END Container -->
<div class="darkcontainer"></div>
<div class="container">
<div class="row-same-height">
<h2><a name="projekte"></a>Projekte</h2>
{% assign loopindex = 0 %}
{% for post in site.posts %}
{% if post.categories contains "project" %}{% unless post.isarchive %}
{% assign loopindex=loopindex | plus:1 %}
{% assign testli=loopindex | modulo:4 %}
<div class="item col-md-3 col-sm-6 col-xs-12">
<div class="item-img">
{% if post.remote %}
{% if post.remote == "noremote" %}
{% else %}
<a href="{{ post.remote }}">
{% endif %}
{% else %}
<a href="{{ post.url | prepend: site.baseurl }}">
{% endif %}
<img width="220px" src="{{ post.img | prepend: site.baseurl }}" alt="{{ post.imgalt }}"
title="{{ post.title }}" />
</a>
</div>
<div class="desc{% if post.largedesc %}{{"-large"}}{% endif %}">
{% if post.remote %}
{{post.content}}
{% else %}
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title}}</a><br>
{% if post.nopreview %}
{%else%}
{{ post.excerpt }}
{%endif%}
{%endif%}
</div>
</div> <!-- END grid/grid-last -->
{% if testli == 0 %} </div><div class="grid-separator"></div><div class="row-same-height"> {% endif %}
{% endunless %}{% endif %}
{% endfor %}
</div><!-- END span -->
</div><!-- END row -->
</div><!-- END Container -->
<div class="darkcontainer"></div>
<div class="container">
<div class="row-same-height">
<h2><a name="archiv"></a><a href="/archive/">Archiv</a></h2>
{% assign loopindex = 0 %}
{% for post in site.posts %}
{% if post.isarchive and loopindex < site.amountofarchive %}
{% assign loopindex=loopindex | plus:1 %}
{% assign testli=loopindex | modulo:4 %}
<div class="item col-md-3 col-sm-6 col-xs-12">
<div class="item-img">
{% if post.remote %}
{% if post.remote == "noremote" %}
{% else %}
<a href="{{ post.remote }}">
{% endif %}
{% else %}
<a href="{{ post.url | prepend: site.baseurl }}">
{% endif %}
<img width="220px" src="{{ post.img | prepend: site.baseurl }}" alt="{{ post.imgalt }}"
title="{{ post.title }}" />
</a>
</div>
<div class="desc{% if post.largedesc %}{{"-large"}}{% endif %}">
{% if post.remote %}
{{post.content}}
{% else %}
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title}}</a><br>
{% if post.nopreview %}
{%else%}
{{ post.excerpt }}
{%endif%}
{%endif%}
</div>
</div> <!-- END grid/grid-last -->
{% if testli == 0 %} </div><div class="grid-separator"></div><div class="row-same-height">{% endif %}
{% endif %}
{% endfor %}
</div><!-- END row -->
</div><!-- END Container -->
</div>