blob: 3f6493301a52a13872f786ff609f9df59c2cd337 (
plain) (
blame)
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
|
<!DOCTYPE html>
<div class="box">
<p class="title has-text-centered">
Pricing Guide
</p>
<div class="table-container">
<table class="table is-fullwidth">
<thead>
<tr>
<th></th>
{% for each in site.data.prices %}
<th>
{{ each.name }}
</th>
{% endfor%}
</tr>
</thead>
<tbody>
<tr>
<th>
Remote
</th>
{% for each in site.data.prices %}
<td>
{% if each.cost.remote %} ${{ each.cost.remote }} per hour {% endif
%}
</td>
{% endfor %}
</tr>
<tr>
<th>
In-Person
</th>
{% for each in site.data.prices %}
<td>
{% if each.cost.inperson %} ${{ each.cost.inperson }} per hour {%
endif %}
</td>
{% endfor %}
</tr>
</tbody>
</table>
</div>
</div>
|