2022-03-19 22:54:55 +00:00
|
|
|
{{- $contact := .contact }}
|
2022-06-27 14:09:44 +00:00
|
|
|
{{- $id := "contact"}}
|
|
|
|
{{if $contact.id}}
|
2023-11-19 16:11:04 +00:00
|
|
|
{{- $id = $contact.id}}
|
2022-06-27 14:09:44 +00:00
|
|
|
{{else if .id}}
|
2023-11-19 16:11:04 +00:00
|
|
|
{{- $id = .id }}
|
2022-06-27 14:09:44 +00:00
|
|
|
{{end}}
|
|
|
|
<div id="{{ $id }}" class="section section-highlight">
|
2021-02-25 21:23:58 +00:00
|
|
|
<div class="section-content contact">
|
|
|
|
<div class="contact-text">
|
|
|
|
<h1>{{ $contact.title }}</h1>
|
|
|
|
<p>{{ $contact.subtitle }}</p>
|
|
|
|
</div>
|
|
|
|
<div class="contact-button-container">
|
|
|
|
<a class="contact-button" href="{{ $contact.button.url }}">{{ $contact.button.text }}</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|