-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
51 lines (49 loc) · 2 KB
/
footer.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<footer class="notepad-site-footer">
<div class="copyright">
<section>All content copyright <a href="{{ site.url }}/about">{{ site.owner.name }}</a> © {{ site.time | date: '%Y' }} • All rights reserved.</section>
<section>Proudly published with <a class="icon-ghost" href="https://jekyllrb.com/">Jekyll</a></section>
</div>
<div class="social-icons">
{% if site.owner.twitter %}
<a href="http://twitter.com/{{ site.owner.twitter }}">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x fa-inverse"></i>
<i class="fa fa-twitter fa-stack-1x"></i>
</span>
</a>
{% endif %}
{% if site.owner.google_plus %}
<a href="{{ site.owner.google_plus }}">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x fa-inverse"></i>
<i class="fa fa-google-plus fa-stack-1x"></i>
</span>
</a>
{% endif %}
{% if site.owner.instagram %}
<a href="http://instagram.com/{{ site.owner.instagram }}">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x fa-inverse"></i>
<i class="fa fa-instagram fa-stack-1x"></i>
</span>
</a>
{% endif %}
{% if site.owner.github %}
<a href="http://github.com/{{ site.owner.github }}">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x fa-inverse"></i>
<i class="fa fa-github fa-stack-1x"></i>
</span>
</a>
{% endif %}
{% if site.owner.facebook %}
<a href="http://facebook.com/{{ site.owner.facebook }}">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x fa-inverse"></i>
<i class="fa fa-facebook fa-stack-1x"></i>
</span>
</a>
{% endif %}
</div>
<div class="cf"></div>
</footer>