2021-01-31 17:07:19 +01:00
|
|
|
<!-- Items -->
|
2024-04-19 18:15:40 +02:00
|
|
|
<section class="wrapper style1 align-center" id="management-team">
|
2021-01-31 17:07:19 +01:00
|
|
|
<div class="inner">
|
2024-04-19 18:15:40 +02:00
|
|
|
{{ with .title }}<h1>{{ . }}</h1>{{ end }}
|
2021-01-31 17:07:19 +01:00
|
|
|
{{ with .content }}<p>{{ . | safeHTML }}</p>{{ end }}
|
|
|
|
<div class="items {{ .style }}">
|
|
|
|
{{ range .items }}
|
|
|
|
{{ partial "item" . }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|