-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.html
More file actions
35 lines (32 loc) · 1.81 KB
/
Copy pathfooter.html
File metadata and controls
35 lines (32 loc) · 1.81 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
30
31
32
33
34
<footer class="page-footer {{ site.footer-color }}">
<div class="container">
<div class="row">
<div class="col l4 s12">
<h5 class="white-text">About</h5>
<p class="grey-text text-lighten-4">
"{{ site.description }}"
</p>
</div>
<div class="col l4 s12 right">
<h5 class="white-text">Connect</h5>
<ul>
{% if site.github_username %}
<li><a href="https://github.com/{{ site.github_username }}" class="white-text text-lighten-3 btn waves-effect waves-light {{ site.footer-button-color }} lighten-3"><i class="mdi mdi-github-circle"></i></a></li>
{% endif %}
{% if site.googleplus_username %}
<li><a href="https://plus.google.com/+{{ site.googleplus_username }}" class="white-text text-lighten-3 btn waves-effect waves-light {{ site.footer-button-color }} lighten-3"><i class="mdi mdi-google-plus"></i></a></li>
{% endif %}
{% if site.twitter_username %}
<li><a href="https://twitter.com/{{ site.twitter_username }}" class="white-text text-lighten-3 btn waves-effect waves-light {{ site.footer-button-color }} lighten-3"><i class="mdi mdi-twitter"></i></a></li>
{% endif %}
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
Copyright © {{ site.author }}, under<a class="{{ site.footer-link-color }}" href="https://creativecommons.org/licenses/by-sa/4.0/"> CC BY-SA 4.0</a> Powered by <a class="{{ site.footer-link-color }}" href="http://jekyllrb.com/">Jekyll</a>.
<a class="btn waves-effect waves-light {{ site.footer-button-color }} lighten-1 right white-text" href="{{ '/about' | prepend: site.baseurl }}" >Contact me</a>
</div>
</div>
</footer>