squirrel/layouts/partials/contact.html

18 lines
559 B
HTML
Raw Normal View History

{{- $contact := .contact }}
2022-06-27 14:09:44 +00:00
{{- $id := "contact"}}
{{if $contact.id}}
{{- $id := $contact.id}}
{{else if .id}}
{{- $id := .id }}
{{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>