-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathfooter.html
More file actions
35 lines (27 loc) · 852 Bytes
/
footer.html
File metadata and controls
35 lines (27 loc) · 852 Bytes
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
<footer class="site-footer">
<div class="wrapper">
<div class="footer-col-wrapper">
<div class="footer-col footer-col-4">
<ul class="contact-list">
<li class="footer-title">{{ site.title }}</li>
<li>{{ site.description }}</li>
<li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>
</ul>
</div>
<div class="footer-col footer-col-2">
<ul class="social-media-list">
{% if site.github_username %}
<li>
{% include icon-github.html username=site.github_username %}
</li>
{% endif %}
{% if site.twitter_username %}
<li>
{% include icon-twitter.html username=site.twitter_username %}
</li>
{% endif %}
</ul>
</div>
</div>
</div>
</footer>