46 lines (41 loc) · 1.10 KB
 1{{ define "main" }}
 2{{ partial "cloud-hero.html" (upper .Section) }}
 3<div class="contact shell--narrow">
 4  {{ $siteContact := .Site.Params.contact }}
 5
 6  <header class="contact-header">
 7    <h1 class="label">Get in touch</h1>
 8    {{ with .Description }}
 9    <p class="contact-header__desc">{{ . }}</p>
10    {{ end }}
11  </header>
12
13  {{ $contacts := .Params.contacts }}
14  {{ if not $contacts }}
15    {{ with $siteContact }}
16      {{ with .contacts }}{{ $contacts = . }}{{ end }}
17    {{ end }}
18  {{ end }}
19
20  {{ with $contacts }}
21    {{ with .items }}
22    <ul class="contact-list list-none">
23      {{ range . }}
24      {{ partial "contact-item.html" . }}
25      {{ end }}
26    </ul>
27    {{ end }}
28  {{ end }}
29
30  {{ with site.Params.media }}
31  <header class="contact-header contact-header--media">
32    <h2 class="label">Media</h2>
33    <p class="contact-header__desc">Find me around the web too</p>
34  </header>
35  <ul class="contact-list list-none">
36    {{ range . }}
37    {{ partial "contact-item.html" . }}
38    {{ end }}
39  </ul>
40  {{ end }}
41
42  {{ with .Content }}
43  <div class="contact-extra">{{ . }}</div>
44  {{ end }}
45</div>
46{{ end }}