-
Notifications
You must be signed in to change notification settings - Fork 2
/
footer.php
48 lines (43 loc) · 1.6 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
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<div class="container" id="contact">
<div class="row">
<div class="col-mb-12 col-4 col-push-2 contact">
<span class="contact-icon"><i class="ion-ios-telephone"></i></span>
<span class="text-muted">联系电话</span>
<br>
<strong>010 - 5169 0300</strong>
</div>
<div class="col-mb-12 col-4 col-push-2 contact" style="margin-bottom:100px;">
<span class="contact-icon"><i class="ion-email"></i></span>
<span class="text-muted">联系邮箱</span>
<br>
<strong>[email protected]</strong>
</div>
</div>
</div>
<footer id="footer" role="contentinfo">
<img width="100" style="margin: -83px 0 20px; background-color: #FFF; padding: 0 10px;" src="<?php $this->options->themeUrl('img/logo-icon.png'); ?>">
<br>
© <?php echo date('Y'); ?> MainTrend Capital. <a style="color:#999; font-weight: normal" href="http://www.miibeian.gov.cn/" target="_blank">京 ICP 备 16018170 号</a>
</footer><!-- end #footer -->
<script>
function scrollDown() {
var timerID = setInterval(function() {
window.scrollBy(0, 5);
if( window.pageYOffset >= 580 )
clearInterval(timerID);
}, 6);
}
function toggleNav() {
var div = document.getElementById('menu');
if (div.style.display == 'none') {
div.style.display = 'block';
}
else {
div.style.display = 'none';
}
}
</script>
<?php $this->footer(); ?>
</body>
</html>