diff options
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/nav.liquid | 2 | ||||
-rw-r--r-- | _includes/pricing-table.liquid | 74 |
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> |