forked from siteleaf/siteleaf.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plans.html
26 lines (21 loc) · 1011 Bytes
/
plans.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
{% include 'includes/header' %}
<section class="layer plans">
<section>
{% for post in posts %}
<section class="third lift plan-tier{% if post.meta['callout'].value %} callout{% endif %}" onclick="location.href='https://manage.siteleaf.com/signup?plan={{post.slug}}';">
{% if post.meta['callout'].value %}<h6>{{post.meta['callout']}}</h6>{% endif %}
<h4>{{post.title}}</h4>
<h5><sup class="superscript">$</sup><span class="plan-price">{% if post.meta['discount'].value %}{{post.meta['discount']}}{% else %}{{post.meta['price']}}{% endif %}</span><sub> /mo</sub></h5>
{% if post.meta['discount'].value %}
<p class="early-adopter-price">Early adopter price</p><br/>
<del>${{post.meta['price']}}/mo</del>
{% endif %}
{{post.body}}
<div class="plan-tier-select">
<button class="blue-button small-button">Select</button>
</div>
</section>
{% endfor %}
</section>
</section>
{% include 'includes/footer' %}