-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (37 loc) · 1.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
---
layout: default
---
<section id="aboutus">
{% include about.html %}
</section>
{% assign next_event = site.posts|first %}
{% assign date = next_event.event-date %}
{% assign month = date | date: "%-m" | minus: '1' %}
{% assign monthname = site.monthnames[month] %}
{% assign weekday = date | date: "%-w" | minus: '1' %}
{% assign weekdayname = site.weekdays[weekday] %}
<section id="next-meeting">
<h2>Nächstes Treffen</h2>
<p>
Das nächste Treffen findet am <em>{{ weekdayname}}</em>,
den <strong>{{ date | date: "%e." }} {{ monthname }} {{ date | date: "%Y" }}</strong>
um <strong>{{ date | date: "%H" }} Uhr</strong>
{{ next_event.location-text }} statt.
</p>
<h3 id="themen">Themen</h3>
<p>Wir haben folgende Vorträge für euch organisiert:</p>
{{ next_event.content }}
</section>
<section id="archive">
<h2>Letzte Treffen mit Vortragsfolien und Fotos</h2>
<ul>
{% for post in site.posts %}
{% unless forloop.first %}
<li><a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }} ({{ post.topics}})</a></li>
{% endunless %}
{% endfor %}
</ul>
</section>
<section id="contact">
{% include contact.html %}
</section>