forked from ffnord/startseite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtreffen.html
58 lines (54 loc) · 1.73 KB
/
treffen.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
---
layout: base
---
<div class="heading">
<div class="row">
<div class="twelve columns">
<h1>Besuch uns!</h1>
</div>
</div>
</div>
<script type="text/javascript">
var cal = ics();
{% for event in site.events %}
cal.addEvent("{{event.title}}", "", "{{event.location}}", "{{event.start}}", "{{event.end}}");
{% endfor %}
</script>
<div class="row">
<div class="eight columns">
<p>Wenn dich Freifunk interessiert, laden wir dich hiermit ein, uns unkompliziert kennen zu lernen. Wir treffen uns immer am letzten Donnerstag im Monat.</p>
<p>Darüber hinaus findest du hier weitere Termine unserer Aktionen.</p>
{% if site.data.upcomingEvents.length > 0 %}
<div class="callout panel radius">
{% include current_event.html %}
</div>
{% endif %}
</div>
<!--<div class="one column">-->
<!--<a href="javascript:cal.download()">iCal</a>-->
<!--</div>-->
</div>
<div class="row">
<h3>Weitere Termine</h3>
<table class="twelve">
<thead>
<tr>
<th>Was</th>
<th>Wann</th>
<th>Wo</th>
</tr>
</thead>
<tbody>
{% for event in site.data.upcomingEvents %}
{% if forloop.index0 == 0 %}{% continue %}{% endif %}
<tr>
<td><strong><a href="{{ event.url }}">{{ event.title }}</a></strong></td>
<td>{{ event.start | localize: "%d. %B %Y, %H:%M" }} Uhr</td>
<td>
{% if event.locationurl %}<a href="{{ event.locationurl }}">{% endif %}{{ event.location }}{% if event.locationurl %}</a>{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>