18 lines
673 B
HTML
18 lines
673 B
HTML
|
{{ print "<!-- " .block.id " -->" | safeHTML }}
|
||
|
<section id="{{.block.id}}" class="main special">
|
||
|
<div class="container">
|
||
|
<div class="content">
|
||
|
<header class="major">
|
||
|
<h2>{{ with .block.title }}{{ . | markdownify }}{{ end }}</h2>
|
||
|
</header>
|
||
|
<div>
|
||
|
<p>Gnarrenburger Straße 33<br/>27432 Bremervörde</p>
|
||
|
<p>Ansprechpartner: Christian Walther-Schwone<br/>0160-3012669<br/>{{ partial "encoded-email" "sjs.brv@googlemail.com" }}</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
{{ if .next }}
|
||
|
<a href="#{{.next.id}}" class="goto-next scrolly">{{ with .block.buttontext }}{{ . | markdownify }}{{ end }}</a>
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
</section>
|