blob: 37728479a4af3b888da421cf47d9b5903d28735c (
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
|
<!DOCTYPE html>
{% for each in site.data.prices %}
<table class="table is-striped is-bordered">
<thead>
<tr>
<th colspan="3" class="has-text-centered">
{{ each.name }}
</th>
</tr>
</thead>
<tbody>
{% if each.cost.inperson != each.cost.remote %}
<tr>
<th style="text-align: right;">
In-Person
</th>
<td>
${{ each.cost.inperson}}/hr
</td>
</tr>
{% endif %}
<tr>
<th style="text-align: right;">
Remote
</th>
<td>
${{ each.cost.remote }}/hr
</td>
</tr>
</tbody>
</table>
{% endfor %}
|