2025-04-17 16:22:33 +02:00
|
|
|
{{- $contact := .contact }} {{- $content := .content }} {{- $id := "contact"}}
|
|
|
|
{{if $contact.id}} {{- $id = $contact.id}} {{else if .id}} {{- $id = .id }}
|
2022-06-27 16:09:44 +02:00
|
|
|
{{end}}
|
|
|
|
<div id="{{ $id }}" class="section section-highlight">
|
2025-04-17 16:22:33 +02:00
|
|
|
<div class="section-content contact">
|
|
|
|
<div class="contact-text">
|
|
|
|
<h1>{{ $contact.title }}</h1>
|
|
|
|
{{ if $contact.subtitle }}
|
|
|
|
<h3>{{ $contact.subtitle }}</h3>
|
|
|
|
{{ end }}
|
|
|
|
<p>{{ $content }}</p>
|
2021-02-25 22:23:58 +01:00
|
|
|
</div>
|
2025-04-17 16:22:33 +02:00
|
|
|
<div class="contact-button-container">
|
|
|
|
{{ with $contact.button }}
|
|
|
|
{{ partial "components/button.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
2024-03-15 17:37:03 +01:00
|
|
|
</div>
|