-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpricing.html
100 lines (97 loc) · 3.17 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
98
99
100
---
title: Pricing
heading: Find the perfect plan for your business
description: We are currently still undecided on the pricing. So, stay tuned.
pricing_table:
- name: Free
color: "#8e8e8e"
features:
- text: $0 per month
highlight: true
- text: Unlimited Stacks
highlight: false
- text: Unrestricted Regions
highlight: false
call_to_action:
link: https://app.bitclouded.io/
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="#">john@business.com</a>.
---
<div class="plans">
<ul class="plan"></ul>
{% 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 %}
<ul class="plan"></ul>
</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 %}-->
<h2>Consultation Services</h2>
<p class="subtext" style="max-width: 650px; margin-left: auto; margin-right: auto;">
While we have open sourced and shared with the world the assets we have, there's no way it can cover all the use cases.
<br>
We can help you deliver what you need with little efforts by extending what already exists. <a href='https://bitcloudedsoftware.typeform.com/to/miHxtG'>Get in touch</a>
</p>