blob: b69672e873717185fa1dd7e2e3797c07a68af7e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<footer class="bg-black ph3 pv4 white">
<div class="mw7 center pt3">
<div class="measure-narrow center mb4">
<img src="/img/logo.svg" alt="Kaldi logo" class="db w4 center mb4 br0">
<p class="f3 lh-title light-gray b tc mb2">Newsletter subscribe</p>
<p>Get awesome news from us in your inbox every two weeks. Be the first to learn about new products.</p>
{{ partial "newsletter-form" . }}
</div>
<div class="flex-ns justify-between">
<div>
<h3 class="f4 b lh-title mb1 primary">Kaldi</h3>
<ul class="mb3">
<li><a href="/" class="link">Home</a></li>
<li><a href="/products" class="link">Our products</a></li>
<li><a href="/values" class="link">About</a></li>
<li><a href="/post" class="link">Blog</a></li>
<li><a href="/contact" class="link">Contact</a></li>
</ul>
</div>
<div>
<h3 class="f4 b lh-title mb1 primary">Find out more</h3>
<ul class="mb3">
<li><a href="/post/jamaica-blue/" class="link">Latest offers</a></li>
<li><a href="/contact" class="link">Schedule and appointment</a></li>
</ul>
</div>
<div>
<h3 class="f4 b lh-title mb2 primary">Social media</h3>
<ul class="mhn2">
{{ partial "social-icon" (dict "link" "#" "svg" "facebook") }}
{{ partial "social-icon" (dict "link" "#" "svg" "twitter") }}
{{ partial "social-icon" (dict "link" "#" "svg" "instagram") }}
{{ partial "social-icon" (dict "link" "#" "svg" "vimeo") }}
</ul>
</div>
</div>
</div>
</footer>
{{ partial "svg" . }}
<script src="/app.js"></script>
</body>
</html>
|