summaryrefslogtreecommitdiff
path: root/_includes/pricing-table.liquid
diff options
context:
space:
mode:
Diffstat (limited to '_includes/pricing-table.liquid')
-rw-r--r--_includes/pricing-table.liquid46
1 files changed, 0 insertions, 46 deletions
diff --git a/_includes/pricing-table.liquid b/_includes/pricing-table.liquid
deleted file mode 100644
index 3f64933..0000000
--- a/_includes/pricing-table.liquid
+++ /dev/null
@@ -1,46 +0,0 @@
-<!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>