2018-08-12 16:22:39 +02:00
|
|
|
{{ print "<!-- " .block.id " -->" | safeHTML }}
|
|
|
|
<section id="{{.block.id}}" class="main special">
|
|
|
|
<div class="container">
|
|
|
|
{{ if eq .params.backgroundpersection true }}
|
2018-08-13 21:22:52 +02:00
|
|
|
{{ with .block.picture }}<span class="image fit primary"><img src="images/{{ . }}" alt="" /></span>{{ end }}
|
2018-08-12 16:22:39 +02:00
|
|
|
{{ end }}
|
|
|
|
<div class="content">
|
|
|
|
<header class="major">
|
|
|
|
<h2>{{ with .block.title }}{{ . | markdownify }}{{ end }}</h2>
|
|
|
|
</header>
|
|
|
|
{{ range .block.item }}
|
|
|
|
<div>
|
|
|
|
<h3>{{ .day }}</h3>
|
|
|
|
<span>{{ with .description }}{{ . | markdownify }}{{ end }}</span>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ if .next }}
|
|
|
|
<a href="#{{.next.id}}" class="goto-next scrolly">{{ with .block.buttontext }}{{ . | markdownify }}{{ end }}</a>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</section>
|