-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathprizes.html
86 lines (83 loc) · 2.17 KB
/
prizes.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
---
title: Prizes
heading: More than just open source, open prizes!
description: Based on install count and our group of MVP judges the following prize levels will be awarded
pricing_table:
- name: 1st Place
color: "gold"
features:
- text: $500 USD cash
highlight: true
- text: Exposure
highlight: false
- text: Experience
call_to_action:
link: /participate
text: Get started
- name: 2nd Place
color: "silver"
features:
- text: $250 USD cash
highlight: true
- text: Exposure
highlight: false
- text: Experience
highlight: false
call_to_action:
link: /participate
text: Get started
- name: 3rd Place
color: "#cd7f32"
features:
- text: $100 USD cash
highlight: true
- text: Exposure
highlight: false
- text: Experience
highlight: false
call_to_action:
link: /participate
text: Get started
faq:
- question: What country do I need to reside in?
answer: We are not limiting this to any specific countries
- question: How will payment work?
answer: We will use PayPal, wire transfer, or any other popular means of funds transfer
- question: Who is sponsoring this?
answer: a small consulting group named <a href="https://www.cloudanswers.com">CloudAnswers.com</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>Prize FAQ</h2>
<dl class="faq">
{% for item in page.faq %}
<div>
<dt>{{ item.question }}</dt>
<dd>{{ item.answer }}</dd>
</div>
{% endfor %}
</dl>
{% endif %}