From 27f1e57bfbadbb3557d7649567e49a1e89927012 Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Fri, 26 Jun 2020 17:22:38 -0400 Subject: working on new pricing table and blogging system --- _includes/pricing-table.liquid | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 _includes/pricing-table.liquid (limited to '_includes/pricing-table.liquid') diff --git a/_includes/pricing-table.liquid b/_includes/pricing-table.liquid new file mode 100644 index 0000000..3772847 --- /dev/null +++ b/_includes/pricing-table.liquid @@ -0,0 +1,33 @@ + +{% for each in site.data.prices %} + + + + + + + + {% if each.cost.inperson != each.cost.remote %} + + + + + {% endif %} + + + + + + +
+ {{ each.name }} +
+ In-Person + + ${{ each.cost.inperson}}/hr +
+ Remote + + ${{ each.cost.remote }}/hr +
+{% endfor %} -- cgit v1.2.3