{% for each in site.data.prices %}
{{ each.name }}
{% if each.cost.inperson != each.cost.remote %}
In-Person
${{ each.cost.inperson}}/hr
{% endif %}
Remote
${{ each.cost.remote }}/hr
{% endfor %}