-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
75 lines (59 loc) · 2.83 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
<div class="wrapFooter"><!-- footer -->
<div class="container">
<footer id="footer">
<div class="row marginTop">
<div class="col-md-4 col-sm-12">
<a href="<?php echo site_url(); ?>"><img alt="Logo" src="<?php bloginfo( 'template_url' ); ?>/img/logo-black.jpg" width="240px"/></a>
</div>
<div class="col-md-6 col-sm-8 marginTop">
<?php dynamic_sidebar( 'sidebar-2' ); ?>
</div>
<div class="col-md-2 col-sm-4 marginTop">
<?php dynamic_sidebar( 'sidebar-3' ); ?>
</div>
</div>
<div class="row">
<div class="col-md-10 col-sm-10">
<h5 class="copyright">©<?php echo date("Y"); ?> - <?php bloginfo( 'name' ); ?> <?php bloginfo('description'); ?></h5>
</div>
<div class="col-md-2 col-sm-2" >
<div><a href="http://www.lamtha2.co.uk" target="_blank"><span class="designedBy"></span></a></div>
</div>
</div>
</footer>
</div> <!-- end container -->
</div> <!-- end wrapper -->
<noscript>
<div class="container" style="text-align:center; font-size:24px;">
<div style="position: fixed; top: 0px; left: 0px; z-index: 3000; height: 100%; width: 100%; background-color: #FFFFFF;">
<p>This website requires Javascript to be enabled in your browser.</p>
<p>Please follow the instructions to enable Javascript at <a href="http://www.enable-javascript.com/" target="_blank">http://www.enable-javascript.com/</a></p>
</div>
</div>
</noscript>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Bootstrap JavaScript plugins -->
<script src="<?php bloginfo( 'template_url' ); ?>/bootstrap-3.3.1/js/bootstrap.min.js"></script>
<!-- smooth scroll script -->
<script src="<?php bloginfo( 'template_url' ); ?>/js/smoothscroll.js" ></script>
<!-- CSS3 animateit - not used
<link rel="stylesheet" href="<?php bloginfo( 'template_url' ); ?>/css3-animate-it/animations.css" />
<script src="<?php bloginfo( 'template_url' ); ?>/css3-animate-it/css3-animate-it.js"></script>-->
<!-- To Top scripts http://www.mattvarone.com/web-design/uitotop-jquery-plugin/ -->
<!-- the necessary css for UItoTop -->
<link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo( 'template_url' ); ?>/jquery.ui.totop/css/ui.totop.css" />
<!-- easing plugin ( optional ) -->
<script src="<?php bloginfo( 'template_url' ); ?>/jquery.ui.totop/js/jquery.easing.js"></script>
<!-- UItoTop plugin -->
<script src="<?php bloginfo( 'template_url' ); ?>/jquery.ui.totop/js/jquery.ui.totop.js"></script>
<script>
$(document).ready(function() {
$().UItoTop({ easingType: 'easeOutQuart' });
});
</script>
<!-- statcounter -->
<?php include('inc/statcounter.php') ?>
<?php wp_footer();?>
</body>
</html>