summaryrefslogtreecommitdiff
path: root/_includes/pricing-table.liquid
blob: 5ea6253774cebcca4a33215e18d7ca8b1af15188 (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
<!DOCTYPE html>
<div class="box">
  <p class="title has-text-centered">
    Pricing Guide
  </p>
  <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>