forked from leopardpan/leopardpan.github.io
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfooter.html
More file actions
executable file
·95 lines (84 loc) · 3.43 KB
/
footer.html
File metadata and controls
executable file
·95 lines (84 loc) · 3.43 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<section class="footer">
<footer>
<div class = "footer_div">
<nav class="cover-navigation navigation--social">
<ul class="navigation">
{% if site.social.weibo %}
<!-- Weibo -->
<li class="navigation__item_social">
<a href="http://weibo.com/{{site.social.weibo}}" title="@{{site.social.weibo}} 的微博" target="_blank">
<i class='social fa fa-weibo fa-2x'></i>
<span class="label">Weibo</span>
</a>
</li>
{% endif %}
{% if site.social.github %}
<!-- Github -->
<li class="navigation__item_social">
<!--<a href="https://github.com/{{site.social.github}}" title="@{{site.social.github}} 的 Github" target="_blank">
<i class='social fa fa-github fa-2x'></i>
<span class="label">Github</span>
</a>-->
<a href="https://github.com/CoderOfSong" title="CoderOfSong 的 Github" target="_blank">
<i class='social fa fa-github fa-2x'></i>
<span class="label">Github</span>
</a>
</li>
{% endif %}
{% if site.social.twitter %}
<!-- Twitter -->
<li class="navigation__item_social">
<a href="http://twitter.com/{{site.social.twitter}}" title="@{{site.social.twitter}}" target="_blank">
<i class='social fa fa-twitter fa-2x'></i>
<span class="label">Twitter</span>
</a>
</li>
{% endif %}
{% if site.social.gplus %}
<!-- Google Plus -->
<li class="navigation__item_social">
<a href="https://plus.google.com/{{site.social.gplus}}" rel="author" title="Google+" target="_blank">
<i class='social fa fa-google-plus-square fa-2x'></i>
<span class="label">Google Plus</span>
</a>
</li>
{% endif %}
<!-- RSS -->
<li class="navigation__item_social">
<a href="/feed.xml" rel="author" title="RSS" target="_blank">
<i class='social fa fa-rss fa-2x'></i>
<span class="label">RSS</span>
</a>
</li>
{% if site.social.mail %}
<!-- Email -->
<li class="navigation__item_social">
<a href="mailto:{{site.social.mail}}" title="给我发邮件">
<i class='social fa fa-envelope fa-2x'></i>
<span class="label">Email</span>
</a>
</li>
{% endif %}
</ul>
</nav>
</div>
<div class = "footer_div">
<p class="copyright text-muted">
Copyright © {{ site.title }} {{ site.time | date: '%Y' }} Theme by <a href="http://CoderOfSong.github.io/">CoderOfSong</a> |
<iframe
style="margin-left: 2px; margin-bottom:-5px;"
frameborder="0" scrolling="0" width="91px" height="20px"
src="https://github.com/CoderOfSong/CoderOFSong.github.io" >
</iframe>
</p>
<div align="right">
<link rel="stylesheet" href="//cdn.bootcss.com/font-awesome/4.3.0/css/font-awesome.min.css">
<!-- 访问统计 -->
<span id="busuanzi_container_site_pv">
本站总访问量
<span id="busuanzi_value_site_pv"></span>次
</span>
</div>
<div>
</footer>
</section>