forked from siteleaf/siteleaf.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeatures.html
37 lines (37 loc) · 1009 Bytes
/
features.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
{% include 'includes/header' %}
<section class="layer features-main">
<section>
{% for post in posts %}
{% if post.meta['featured'].value == "true" %}
<figure class="two-thirds screenshot">
<img src="{{post.assets[1].url}}" alt="{{post.title}}" />
</figure>
<section class="third feature-item">
<h3>{{post.title}}</h3>
<p>{{post.body}}</p>
</section>
{% endif %}
{% endfor %}
</section>
</section>
<section class="layer features-secondary">
<section>
{% for post in posts %}
{% if post.meta['featured'].value == "false" %}
<section class="third">
<h4>{{post.title}}</h4>
<p>{{post.body}}</p>
</section>
{% endif %}
{% endfor %}
</section>
</section>
<section class="layer get-started">
<section>
<h3>Create your website now!</h3>
<div>
<button class="green-button large-button" onclick="location.href='/plans';">Get started</button>
</div>
</section>
</section>
{% include 'includes/footer' %}