-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
47 lines (36 loc) · 1.52 KB
/
index.html
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
{% capture content %}
<section class='theme--{{ meta.theme }} hero'>
{% include 'includes/header' %}
<div class='hero__header grid-container--wide'>
{% assign section = pages.hero %}
<div class='hero__title'>
{{ section.body }}
</div>
<div class='hero__buttons'>
{% include 'includes/get-started' %}
</div>
</div>
<div class='grid-container--wider'>
<div class='hero__screenshot' style='background-image: url({{ section.meta.image }}); padding-bottom: {{ section.meta.image-ratio }}'></div>
</div>
</section>
{% include 'includes/latest-feature' %}
<section class='grid-container--wide homepage__text-section homepage__section'>
{{ pages.intro.body }}
</section>
{% assign features = pages.features.pages | where:"meta.type","primary" %}
{% include 'includes/features' %}
<section class='homepage__feature-section--secondary homepage__feature-section homepage__section'>
{% assign features = pages.features.pages | where:"meta.type","secondary" %}
{% include 'includes/column-features' %}
</section>
<section class='theme--green homepage__next-section homepage__text-section homepage__section'>
<p>
<a class='link' href='{{ site.meta.signup }}'>Try Cushion for <strong>free</strong> <a class='button' href='{{ site.meta.signup }}'>Sign up</a></span></a>
</p>
</section>
{% include 'includes/testimonials' %}
{% include 'includes/process' %}
{% include 'includes/outro' %}
{% endcapture %}
{% include 'layouts/default' %}