aboutsummaryrefslogtreecommitdiffstats
path: root/site/layouts/section/contact.html
diff options
context:
space:
mode:
authorMathias Biilmann <info@mathias-biilmann.net>2017-12-07 10:20:11 -0800
committerGitHub <noreply@github.com>2017-12-07 10:20:11 -0800
commit8745627e7d171b4b1fd2062b4328bf23899663e9 (patch)
tree5f0399bf843f5a3055e0bb6d3da6774b1a01f307 /site/layouts/section/contact.html
parent2db9a63c54df63e95c1fbf39391d201c98a62b86 (diff)
parenta4bfd44601069a1b054c396ad754c8a2b7ec688c (diff)
Merge pull request #11 from netlify-templates/update-for-cms-1-0
Update for CMS 1.0
Diffstat (limited to 'site/layouts/section/contact.html')
-rw-r--r--site/layouts/section/contact.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/site/layouts/section/contact.html b/site/layouts/section/contact.html
new file mode 100644
index 0000000..205d92e
--- /dev/null
+++ b/site/layouts/section/contact.html
@@ -0,0 +1,26 @@
+{{ partial "head" . }}
+
+{{ partial "nav" . }}
+
+<div class="ph3 bg-off-white">
+ <div class="center mw6 pv3">
+
+ <img src="{{ .Params.logo }}" alt="" class="db w4 center pv4">
+
+ {{ .Content }}
+
+ <div class="flex-ns mb3">
+ {{ range .Params.contact_entries }}
+ <div>
+ <h4 class="f4 b lh-title mb2 primary">{{ .heading }}</h4>
+ <p>{{ .text }}</p>
+ </div>
+ {{ end }}
+ </div>
+
+ {{ partial "contact-form" . }}
+
+ </div>
+</div>
+
+{{ partial "footer" . }}