-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
56ae2c3
commit c08a2ca
Showing
1 changed file
with
48 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,48 @@ | ||
<footer class="site-footer h-card"> | ||
<data class="u-url" href="{{ "/" | relative_url }}"></data> | ||
|
||
<div class="wrapper"> | ||
|
||
<h2 class="footer-heading">{{ site.title | escape }}</h2> | ||
|
||
<div class="footer-col-wrapper"> | ||
<div class="footer-col footer-col-1"> | ||
<ul class="contact-list"> | ||
<li class="p-name"> | ||
{%- if site.author -%} | ||
{{ site.author | escape }} | ||
{%- else -%} | ||
{{ site.title | escape }} | ||
{%- endif -%} | ||
</li> | ||
{%- if site.email -%} | ||
<li><a class="u-email" href="mailto:{{ site.email }}">{{ site.email }}</a></li> | ||
{%- endif -%} | ||
</ul> | ||
</div> | ||
|
||
<div class="footer-col footer-col-2"> | ||
{%- include social.html -%} | ||
</div> | ||
|
||
<div class="footer-col footer-col-3"> | ||
<p>{{- site.description | escape -}}</p> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
</footer> | ||
<footer class="site-footer h-card"> | ||
<data class="u-url" href="{{ "/" | relative_url }}"></data> | ||
|
||
<div class="wrapper"> | ||
|
||
<h2 class="footer-heading">{{ site.title | escape }}</h2> | ||
|
||
<div class="footer-col-wrapper" > | ||
<div class="footer-col footer-col-1" style="width: 60%;"> | ||
<ul class="contact-list"> | ||
<li class="p-name"> | ||
<!--{%- if site.author -%} | ||
{{ site.author | escape }} | ||
{%- else -%} | ||
{{ site.title | escape }} | ||
{%- endif -%} | ||
</li>--> | ||
<li>Contact Us:</li> | ||
{%- if site.email1 -%} | ||
<li><a class="u-email" href="mailto:{{ site.email1 }}">{{ site.email1 }}</a></li> | ||
{%- endif -%} | ||
{%- if site.email2 -%} | ||
<li><a class="u-email" href="mailto:{{ site.email2 }}">{{ site.email2 }}</a></li> | ||
{%- endif -%} | ||
{%- if site.phone1 -%} | ||
<li><li><a href="tel:{{ site.phone1 }}">{{ site.phone1 }}</a></li></li> | ||
{%- endif -%} | ||
{%- if site.phone2 -%} | ||
<li><li><a href="tel:{{ site.phone2 }}">{{ site.phone2 }}</a></li></li> | ||
{%- endif -%} | ||
</ul> | ||
</div> | ||
|
||
<div class="footer-col footer-col-2" style="width: 30%;"> | ||
Social Media Handles: | ||
{%- include social.html -%} | ||
</div> | ||
|
||
<!--<div class="footer-col footer-col-3" style="width: 30%;"> | ||
<p>{{- site.description | escape -}}</p> | ||
</div>--> | ||
|
||
|
||
</div> | ||
|
||
</div> | ||
|
||
</footer> |