forked from markus/AMPERION_Webpage
35 lines
746 B
HTML
35 lines
746 B
HTML
|
|
{{ define "main" }}
|
||
|
|
|
||
|
|
{{ partial "page-title.html" . }}
|
||
|
|
|
||
|
|
<section class="impressum section">
|
||
|
|
<div class="container">
|
||
|
|
<div class="row">
|
||
|
|
<div class="col-md-12">
|
||
|
|
<table class="table">
|
||
|
|
<tbody>
|
||
|
|
{{ range $index, $heading := .Params.headings }}
|
||
|
|
<tr>
|
||
|
|
<td class="col-1">
|
||
|
|
{{ $heading }}
|
||
|
|
</td>
|
||
|
|
<td class="col-2">
|
||
|
|
{{ index $.Params.contents $index | markdownify }}
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
{{ end }}
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<!-- Call to action -->
|
||
|
|
{{ if .Params.cta.enable }}
|
||
|
|
{{ partial "cta.html" . }}
|
||
|
|
{{ end }}
|
||
|
|
<!-- /Call to action -->
|
||
|
|
|
||
|
|
{{ end }}
|