-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
74 lines (72 loc) · 2.49 KB
/
footer.php
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
<?php
/**
* 页面底部信息
*/
if(!defined('EMLOG_ROOT')) {exit('error!');}
?>
<div class="fat-footer">
<div class="wrapper">
<div class="layout layout--center">
<div class="layout__item palm-mb">
<div class="media">
<img class="media__img avatar" src="<?php echo _g("tximg");?>" alt="" height="50" width="50">
<div class="media__body">
<h4><?php echo $blogname; ?></h4>
<p>
<?php echo _g("home_strong_1");?>
</p>
</div>
</div>
</div>
<div class="layout__item yc">
<div class="fat-footer__social">
<ul class="list-bare list-inline">
<li><a href="<?php echo _g("wb");?>" target="_blank" rel="nofollow"><i class="iconfont" aria-hidden="true"></i></a></li>
<li><a href="http://wpa.qq.com/msgrd?v=3&uin=<?php echo _g("qq");?>&site=qq&menu=yes" target="_blank" rel="nofollow"><img class="qq" src="<?php echo TEMPLATE_URL; ?>images/qq.png"></a></li>
<li><a href="javascript:void(0)" onMouseOut="hideImg()" onmouseover="showImg()"><i class="iconfont" aria-hidden="true"></i></a><div id="wxImg" style="height: 50px; position: absolute; margin-top: -143px; margin-left: -20px; display: none;width: 90px;"><img src="<?php echo _g("wx");?>"></div></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<footer class="footer" role="contentinfo">
<div class="wrapper wrapper--wide split split--responsive">
<div class="split__title">
© 2016 by <a href="<?php echo BLOG_URL; ?>" target="_blank"><?php echo $blogname; ?></a>
</div>
Theme:
<a href="https://www.ianiu.cn/" target="_blank" rel="nofollow">Variant</a> copy by
<a href="https://www.ianiu.cn/" target="_blank">瑾忆</a>
</div>
</footer>
<?php echo widget_search($title); ?>
<script type="text/javascript" src="<?php echo TEMPLATE_URL; ?>js/module.js"></script>
<script type="text/javascript" src="<?php echo TEMPLATE_URL; ?>js/script.js"></script>
<script>
var infinite_scroll = {
loading: {
img: '<?php echo TEMPLATE_URL; ?>images/ajax-loader.gif',
msgText: '',
finishedMsg: ''
},
nextSelector: '.js-next a',
navSelector: '.js-pagination',
itemSelector: '.post',
contentSelector: '.js-posts'
};
</script>
<script type="text/javascript">
function showImg(){
document.getElementById("wxImg").style.display='block';
}
function hideImg(){
document.getElementById("wxImg").style.display='none';
}
</script>
<div id="fb-root">
</div>
<?php doAction('index_footer'); ?>
<?php doAction('index_bodys'); ?>
</body>
</html>