Skip to content

Commit

Permalink
add support for phone numbers in footer; fix mmistakes#136
Browse files Browse the repository at this point in the history
  • Loading branch information
daattali authored Dec 8, 2016
1 parent b638ef8 commit ff25126
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,17 @@
</span>
</a>
</li>
{% endif %}
{% endif %}
{% if site.author.telephone and site.footer-links-active.telephone %}
<li>
<a href="tel:{{ site.author.telephone }}" title="Phone">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-phone fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
{% endif %}
{% if site.footer-links-active.rss %}
<li>
<a href="{{ '/feed.xml' | prepend: site.baseurl }}" title="RSS">
Expand Down

0 comments on commit ff25126

Please sign in to comment.