blob: bf430ca65a68a451b40b7acc1e2f15a739e55371 (
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
|
{{ partial "head" . }}
{{ partial "nav" . }}
{{ partial "jumbotron" (dict "imageUrl" .Params.image "title" .Title) }}
{{ partial "4-up" .Params.intro }}
{{ with .Params.main }}
<div class="mw7 center">
<div class="mw6 ph3 mb3">
<h3 class="f3 b lh-title mb2">{{ .heading }}</h3>
<p>{{ .description }}</p>
</div>
</div>
<!-- Image grid -->
{{ partial "image-grid" . }}
{{ end }}
<div class="pb4">
{{ range .Params.testimonials }}
{{ partial "blockquote" . }}
{{ end }}
</div>
<!-- Full-width image -->
<img src="{{ .Params.full_image }}" alt="" class="db w-100">
{{ partial "table" .Params.pricing }}
{{ partial "footer" . }}
|