-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkshop.html
More file actions
42 lines (39 loc) · 1.07 KB
/
workshop.html
File metadata and controls
42 lines (39 loc) · 1.07 KB
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
---
layout: main
menu: workshop
corners: orange
---
<dl id="werkstatt" class="accordion">
<dt id="werkstatt">
<div>Werkstatt</div>
</dt>
<dd>
<div class="slider">
<section>
<img src="/img/{{page.menu}}/werkstatt.png">
<div>
Willkommen in unserer Bastelstube.
Auf unserer kreativen Spielwiese für Entwickler entstehen aus den Experimenten von heute
unsere Projekte von morgen! Oder aber die Erkenntnis viel Spaß gehabt zu haben...
Wir haben uns in den Kopf gesetzt auch ungewöhnliche Wege zu beschreiten
und dafür kann man nicht immer nur auf ausgetretenen Pfaden eine Abkürzung suchen.
</div>
</section>
</div>
</dd>
<dt id="2010">
<div>2010</div>
</dt>
<dd>
<dl class="accordion">
{% for post in site.posts %}
{% if post.categories contains "werkstatt" and {{post.date | date: "%Y" }} == "2010" %}
<dt id="{{post.keyword | downcase}}" {% if post.image == nil %}class="noimg"{% endif %}>
<div>{{post.title}}</div>
</dt>
{% include bigpost.html %}
{% endif %}
{% endfor %}
</dl>
</dd>
</dl>