mirror of
https://github.com/adulau/art.git
synced 2024-11-21 17:47:05 +00:00
Update footer.html
This commit is contained in:
parent
7083911f0a
commit
82d7650720
1 changed files with 17 additions and 3 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue