-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
74 lines (54 loc) · 2.36 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 id="footerBackground">
<footer class="container">
<hr>
<div class="row footer-bottom">
<div class="span6">
<p><small>©<?php echo date('Y'); ?> <?php bloginfo('name'); ?> / All Rights Reserved</small></p>
</div>
<div class="span6">
<p class="pull-right"><small>Powered by Wordpress / Built using Bootstrap</small></p>
</div>
</div>
<!-- /end footer-bottom -->
</footer>
</div>
<?php wp_footer(); ?>
<!-- JavaScript
================================================== -->
<!-- JavaScript at the bottom for fast page loading -->
<!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if offline -->
<script>window.jQuery || document.write('<script src="<?php bloginfo('template_url'); ?>/js/lib/jquery.min.js"><\/script>')</script>
<!-- Call to Twitter Bootsrap -->
<script src="<?php bloginfo('template_url'); ?>/js/lib/bootstrap.min.js"></script>
<!-- Call to FancyBox -->
<script src="<?php bloginfo('template_url'); ?>/js/lib/jquery.fancybox.min.js"></script>
<?php if (is_post_type_archive('project') or is_tax( 'client' )) { ?>
<!-- Call to Other Plugins -->
<script src="<?php bloginfo('template_url'); ?>/js/lib/jquery.isotope.min.js"></script>
<!-- Call to Custom JS -->
<script src="<?php bloginfo('template_url'); ?>/js/application.js"></script>
<?php } else { ?>
<!-- Default JS -->
<script src="<?php bloginfo('template_url'); ?>/js/default.js"></script>
<?php } ?>
<body onload="setTimeout(function() { window.scrollTo(0, 1) }, 100);"> <!-- Mobile Safari URL shift -->
<!-- /end scripts -->
<!-- Analytics
================================================== -->
<!-- Google Analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-5102404-3']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- End Document
================================================== -->
</body>
<!-- /end body -->
</html>
<!-- /end html -->