forked from VIP000/netlify-home
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpricing.html
65 lines (60 loc) · 1.83 KB
/
pricing.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
layout: default
title: Plans & Pricing
---
<section class="bg-dark-muted inverse bb bb--large">
<div class="content">
<header class="bb">
<h1 class="alpha mt-80 mb-60 text-center">What sets netlify apart from the rest</h1>
</header>
<div class="mt-60 mb-60 text-center-med">
<div class="l-container mb-60">
<div class="l-third mb-30">
<div class="pricing-icon">
<svg width="200" height="200">
<use xlink:href="#icon-polyhedron" />
</svg>
</div>
</div>
{% for item in site.data.plans.intro %}
{% assign mod = forloop.index0 | modulo:3 %}
<!-- Mod {{mod}} -->
{% if mod == 0 %}
<!-- Starting -->
<div class="l-third">
<section class="blurb blurb--wide">
<div class="blurb-bd small">
{% endif %}
<h5 class="medium bold highlight mt-0 mb-0">{{item.title}}</h5>
<p class="mt-0 mb-40 intro-item js-item">
<span class="teaser">{{item.teaser}}</span>
<span class="text">{{item.text}}</span>
<a href="#" class="js-read-more">
<svg width="14" height="14" class="icon">
<use xlink:href="#icon-arrow-light" />
</svg>
</a>
</p>
{% if mod == 2 %}
<!-- Ending -->
</div>
</section>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div><!-- end content -->
</section>
<!-- Pricing -->
<section class="bg-light-muted-2 muted text-center">
<div class="content">
<header>
<h1 class="tera mt-60 mb-40">Pricing</h1>
</header>
<div class="bb bb--muted">
{% include plans.html %}
</div>
{% include testimonials.html %}
</div>
</section>