summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2020-06-29 08:26:43 -0400
committerAdam T. Carpenter <atc@53hor.net>2020-06-29 08:26:43 -0400
commitfb1f2579e55f7439a9fc9320d16ca85092ebe4b0 (patch)
tree63a6505c684b1f18e4a9ad201ae4974db982bac1
parent90c58028a26c0b48811d3058260f6f936f6ad6cb (diff)
downloadcarpentertutoring-fb1f2579e55f7439a9fc9320d16ca85092ebe4b0.tar.xz
carpentertutoring-fb1f2579e55f7439a9fc9320d16ca85092ebe4b0.zip
temporarily disabled blog; added table container for pricing guide
-rw-r--r--_includes/nav.liquid2
-rw-r--r--_includes/pricing-table.liquid74
2 files changed, 41 insertions, 35 deletions
diff --git a/_includes/nav.liquid b/_includes/nav.liquid
index a164ed3..43b5b11 100644
--- a/_includes/nav.liquid
+++ b/_includes/nav.liquid
@@ -13,9 +13,11 @@
<div class="navbar-menu" id="navMenu">
<div class="navbar-start"></div>
<div class="navbar-end">
+ {% comment %}
<a class="navbar-item" href="/blog">
Blog
</a>
+ {% endcomment %}
<a class="navbar-item" href="/#offerings">
Offerings
</a>
diff --git a/_includes/pricing-table.liquid b/_includes/pricing-table.liquid
index 5ea6253..3f64933 100644
--- a/_includes/pricing-table.liquid
+++ b/_includes/pricing-table.liquid
@@ -3,40 +3,44 @@
<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 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>