Update footer.html

This commit is contained in:
Andrew Banchich 2017-07-05 22:00:34 +00:00
parent 7083911f0a
commit 82d7650720

View file

@ -40,9 +40,23 @@
<div class="contact-method">
<span class="icon alt fa-home"></span>
<h3>Address</h3>
<span>{{ site.street_address }}<br />
{{ site.city }}, {{ site.state }} {{ site.zip_code }}<br />
{{ site.country }}</span>
<span>
{% if site.street_address %}
{{ site.street_address }}<br />
{% endif %}
{% if site.city %}
{{ site.city }},
{% endif %}
{% if site.state %}
{{ site.state }}
{% endif %}
{% if site.zip_code %}
{{ site.zip_code }<br />
{% endif %}}
{% if site.country %}
{{ site.country }}
{% endif %}
</span>
</div>
</section>
</section>