-
Notifications
You must be signed in to change notification settings - Fork 0
/
pricing.html
97 lines (95 loc) · 2.81 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
92
93
94
95
96
97
---
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: Basic
color: "#8e8e8e"
features:
- text: $25 per month
highlight: true
- text: Up to 5 users
highlight: false
- text: Basic lead scoring
highlight: false
- text: CRM
highlight: false
- text: Basic reporting
highlight: false
- text: Sales map
highlight: false
call_to_action:
link: http://mysite.com?plan=basic
text: Get started
- name: Pro
color: "#4a4a4a"
features:
- text: $99 per month
highlight: true
- text: Everything in Basic
highlight: false
- text: Up to 25 users
highlight: false
- text: Advanced lead scoring
highlight: false
- text: Pipeline management
highlight: false
- text: Advanced reporting
highlight: false
call_to_action:
link: http://mysite.com?plan=pro
text: Get started
- name: Professional
color: "#000000"
features:
- text: $299 per month
highlight: true
- text: Everything in Basic and Pro
highlight: false
- text: Up to 100 users
highlight: false
- text: Campaign builder
highlight: false
- text: Machine learning
highlight: false
- text: Calendar
highlight: false
call_to_action:
link: http://mysite.com?plan=professional
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="#">[email protected]</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 %}