aboutsummaryrefslogtreecommitdiffstats
path: root/site/layouts/partials/footer.html
blob: 629e288511e5e513e1f6210107fac221c2635d30 (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
58
59
<footer class="bg-black ph3 pv4 white">

	<div class="mw7 center pt3">
		<div class="measure-narrow center mb4">
			<img src="/img/logo.svg" alt="" class="db w4 center mb4">
			<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>

			<form action="" class="flex-ns mb3">
				<fieldset class="flex-auto mb2 mb0-ns mr2-ns">
					<input type="text" id="email" placeholder="Your email" class="w-100">
					<label for="email">Your email</label>
				</fieldset>
				<button class="btn mb3 w-100 w-auto-ns mb0-ns raise" type="submit">Submit</button>
			</form>
		</div>

		<div class="flex-ns justify-between">
			<div>
				<h3 class="f4 b lh-title mb1 primary">List of links</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="/about" class="link">About us</a></li>
					<li><a href="/post" class="link">post</a></li>
					<li><a href="/contact" class="link">Contact</a></li>
				</ul>
			</div>

			<div>
				<h3 class="f4 b lh-title mb1 primary">Another list of links</h3>
				<ul class="mb3">
					<li><a href="#" class="link">Latest offer</a></li>
					<li><a href="#" class="link">Our locations</a></li>
					<li><a href="#" class="link">Our partners</a></li>
				</ul>
			</div>

			<div>
				<h3 class="f4 b lh-title mb2 primary">Social media</h3>
				<ul class="mhn2">
					{{ partial "social-icon" (dict "link" "facebook.com" "svg" "500px") }}
					{{ partial "social-icon" (dict "link" "facebook.com" "svg" "Airbnb") }}
					{{ partial "social-icon" (dict "link" "facebook.com" "svg" "Facebook") }}
					{{ partial "social-icon" (dict "link" "facebook.com" "svg" "Amazon") }}
				</ul>
			</div>
		</div>
	</div>

</footer>

{{ partial "svg" . }}

<script src="/app.js"></script>

</body>

</html>