-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
36 lines (36 loc) · 951 Bytes
/
footer.php
File metadata and controls
36 lines (36 loc) · 951 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
36
<?php
/**
* 页面底部信息
*/
if(!defined('EMLOG_ROOT')) {exit('error!');}
?>
</div>
</div>
<footer>
<div class="container">
<div class="row">
<div class="col-lg-12 footer-below">
<hr>
Powered by <a href="http://www.emlog.net" title="采用emlog系统">emlog</a>
<a href="http://www.miibeian.gov.cn" target="_blank"><?php echo $icp; ?></a> <?php echo $footer_info; ?>
<?php doAction('index_footer'); ?>
</div>
</div>
</div>
</footer>
<script>
$(document).ready(function(){
dropdownOpen();//鼠标划过就展开子菜单,免得需要点击才能展开
prettyPrint();
});
function dropdownOpen() {
var $dropdownLi = $('li.dropdown');
$dropdownLi.mouseover(function() {
$(this).addClass('open');
}).mouseout(function() {
$(this).removeClass('open');
});
}
</script>
</body>
</html>