-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.html
More file actions
29 lines (27 loc) · 1.25 KB
/
footer.html
File metadata and controls
29 lines (27 loc) · 1.25 KB
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
{% if page.image.feature %}
<footer id="footer" class="blog-background overlay text-center align-middle animated from-top" style="background-image: url(/images/{{ page.image.feature }})" >
{% else %}
<footer id="footer" class="blog-background overlay text-center align-middle animated from-top" style="background-image: url(/images/{{ site.default_bg }})" >
{% endif %}
<div class="inner">
<div class="container">
<ul class="social-icons">
<li>
<a href="http://github.com/zmanio" data-toggle="tooltip" title="zman on github" target="_blank">
<i class="icon-github"></i>
</a>
</li>
</ul>
<div>
<a href="/about/">Lonnie Pryor III</a> © {{ site.time | date: '%Y' }} • All rights reserved.
</div>
<ul class="menu-items">
<li><a href="/">projects</a> •</li>
<li><a href="/blog">blog</a> •</li>
<li><a href="/categories">categories</a> •</li>
<li><a href="/tags">tags</a> •</li>
<li><a href="/feed.xml" title="Atom/RSS feed"><i class="icon-rss"></i> Feed</a></li>
</ul>
</div>
</div>
</footer>