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"> <div class="contact-method">
<span class="icon alt fa-home"></span> <span class="icon alt fa-home"></span>
<h3>Address</h3> <h3>Address</h3>
<span>{{ site.street_address }}<br /> <span>
{{ site.city }}, {{ site.state }} {{ site.zip_code }}<br /> {% if site.street_address %}
{{ site.country }}</span> {{ 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> </div>
</section> </section>
</section> </section>