forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 9
/
selbstbericht-bausteine.html
65 lines (56 loc) · 1.39 KB
/
selbstbericht-bausteine.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
---
layout: default
---
<section class="section">
<div class="container">
<h1 class="title is-1">Selbstbericht Bausteine</h1>
</div>
</section>
<section class="section selbstbericht is-passive">
<div class="container">
<h2 class="title is-4">Snippsel und Textbausteine</h2>
<div class="toc">
<ul class="menu-list">
{% for doc in site.selbstbericht_schnippsel %}
<li><a href="#{{doc.id}}">{{doc.title}}</a></li>
{% endfor %}
</ul>
</div>
</div>
</section>
<section class="section selbstbericht is-old">
<div class="container">
<h2 class="title is-4">Dokumente aus 2009</h2>
<div class="toc">
<ul class="menu-list">
{% for doc in site.selbstbericht2009 %}
<li><a href="#{{doc.id}}">{{doc.title}}</a></li>
{% endfor %}
</ul>
</div>
</div>
</section>
<div id="selbstbericht-passive">
{% for doc in site.selbstbericht_schnippsel %}
<section class="section selbstbericht is-passive" id="{{doc.id}}">
<div class="container">
<div class="content">
<h1>{{doc.title}}</h1>
{{doc.content}}
</div>
</div>
</section>
{% endfor %}
</div>
<div id="selbstbericht-old">
{% for doc in site.selbstbericht2009 %}
<section class="section selbstbericht is-old" id="{{doc.id}}">
<div class="container">
<div class="content">
<h1>{{doc.title}} (aus dem alten Bericht)</h1>
{{doc.content}}
</div>
</div>
</section>
{% endfor %}
</div>