Skip to content

Commit 67aeb12

Browse files
author
root
committed
add support for telephone in footer
1 parent 781e2cb commit 67aeb12

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.me/daattali/20)
44
[![Gem Version](https://badge.fury.io/rb/beautiful-jekyll-theme.svg)](https://badge.fury.io/rb/beautiful-jekyll-theme)
55

6-
> *Copyright 2016 [Dean Attali](http://deanattali.com). Licensed under the MIT license.*
6+
> *Copyright 2016 [Dean Attali](http://deanattali.com)*
77
88
**Beautiful-Jekyll** is a ready-to-use Jekyll theme to help you create an awesome website quickly. Perfect for personal blogs or simple project websites, with a focus on responsive and clean design. You can look at [my personal website](http://deanattali.com) to see it in use, or see examples of websites other people created using this theme [here](https://github.com/daattali/beautiful-jekyll#showcased-users-success-stories).
99

@@ -183,6 +183,7 @@ author:
183183
facebook: yourname # eg. daattali
184184
github: yourname # eg. daattali
185185
twitter: yourname # eg. daattali
186+
telephone: yourphone # eg. +14159998888
186187
reddit: yourname # eg. daattali
187188
google-plus: +yourname # eg. +DeanAttali or 109424658772469020925
188189
linkedin: yourname # eg. daattali

_includes/footer.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,16 @@
133133
</a>
134134
</li>
135135
{% endif %}
136+
{% if site.author.telephone %}
137+
<li>
138+
<a href="tel:{{ site.author.telephone }}" title="Phone">
139+
<span class="fa-stack fa-lg">
140+
<i class="fa fa-circle fa-stack-2x"></i>
141+
<i class="fa fa-phone fa-stack-1x fa-inverse"></i>
142+
</span>
143+
</a>
144+
</li>
145+
{% endif %}
136146
</ul>
137147
<p class="copyright text-muted">
138148
{% if site.author.name %}

0 commit comments

Comments
 (0)