-
Notifications
You must be signed in to change notification settings - Fork 0
/
prices.html
executable file
·77 lines (70 loc) · 2.61 KB
/
prices.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
---
title: Prices
heading: Online English Lesson Prices
description: Please contact me for a free consultation before buying lessons.
pricing_table:
- name: 1 Lesson
color: "#8e8e8e"
features:
- text: £25
highlight: true
- name: 5 Lessons
color: "#4a4a4a"
features:
- text: £110
highlight: true
- name: 10 Lessons
color: "#000000"
features:
- text: £200
highlight: true
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 %}
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="M4F2UXHF4GUME">
<table>
<tr><td><input type="hidden" name="on0" value="Select a package of lessons:">Select a package of lessons:</td></tr><tr><td><select name="os0">
<option value="1 English Lesson">1 English Lesson £25.00 GBP</option>
<option value="5 English Lessons">5 English Lessons £110.00 GBP</option>
<option value="10 English Lessons">10 English Lessons £200.00 GBP</option>
</select> </td></tr>
</table>
<input type="hidden" name="currency_code" value="GBP">
<input type="image" src="https://www.paypalobjects.com/en_GB/i/btn/btn_buynow_LG.gif" border="1" name="submit" alt="PayPal – The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1">
</form>
</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 %}-->