-
Notifications
You must be signed in to change notification settings - Fork 0
/
pricing.html
91 lines (89 loc) · 2.66 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
title: Pricing
heading: Find the perfect plan for your business
description: All plans include our award winning sales optimization solution to track your sales in real time.
pricing_table:
- name: Micro
color: "#FFE066"
features:
- text: 5€ per month
highlight: true
- text: yearly payment
highlight: false
- text: 1 list
highlight: false
- text: max 10 subscribers
highlight: false
- text: max 1 email/24h
highlight: false
call_to_action:
link: /register/micro
text: Get started
- name: Mini
color: "#169873"
features:
- text: 10€ per month
highlight: true
- text: monthly payment
highlight: false
- text: max 5 lists
highlight: false
- text: max 100 subscribers/list
highlight: false
- text: max 2 emails/12h
highlight: false
call_to_action:
link: /register/mini
text: Get started
- name: Maxi
color: "#28587B"
features:
- text: 29€ per month
highlight: true
- text: monthly payment
highlight: false
- text: max 20 lists
highlight: false
- text: max 1000 subscribers/list
highlight: false
- text: max 2 emails/hour
highlight: false
call_to_action:
link: /register/maxi
text: Get started
faq:
- question: What types of payment do you accept?
answer: Credit cards including MasterCard, Visa or American Express.
- question: Can I change my plan at a later time?
answer: Yes, you can upgrade and downgrade your plan at anytime.
- question: Do you offer pricing for nonprofit organizations?
answer: Yes, send us a message and we'll set you up on our nonprofit pricing.
- question: Questions?
answer: Contact us for any further questions at <a href="/contact">Contact Page</a>.
---
<div class="plans">
{% for plan in page.pricing_table %}
<ul class="plan">
<li style="background: {{ plan.color }}">
<h3>{{ plan.name }}</h3>
</li>
{% for feature in plan.features %}
<li {% if feature.highlight %} class="highlighted"{% endif %}>{{ feature.text }}</li>
{% endfor %}
{% if plan.call_to_action %}
<li class="pricing-cta"><div class="button"><a style="background: {{ plan.color }}" href="{{ plan.call_to_action.link }}">{{ plan.call_to_action.text }} →</a></div></li>
{% endif %}
</ul>
{% endfor %}
</div>
{% if page.faq %}
<h2>Pricing FAQ</h2>
<dl class="faq">
{% for item in page.faq %}
<div>
<dt>{{ item.question }}</dt>
<dd>{{ item.answer }}</dd>
</div>
{% endfor %}
</dl>
{% endif %}