-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·24 lines (22 loc) · 841 Bytes
/
footer.php
File metadata and controls
executable file
·24 lines (22 loc) · 841 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
<footer>
<div id="footer-sidebar" class="container">
<div id="footer-widget">
<?php
if(is_active_sidebar('footer-widget')){
dynamic_sidebar('footer-widget');
} ?>
</div>
<!-- <p>© <?php// echo date('Y'); ?></p> -->
<p>© 2015 <a href="www.jamesmcdermid.ca">James McDermid</a> & <a href="http://francislanglois.com">Francis Langlois</a> | All Rights Reserved</p>
</div>
</footer>
<script>
/* Google Analytics! */
var _gaq=[["_setAccount","UA-XXXXX-X"],["_trackPageview"]]; // Change UA-XXXXX-X to be your site's ID
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
g.src=("https:"==location.protocol?"//ssl":"//www")+".google-analytics.com/ga.js";
s.parentNode.insertBefore(g,s)}(document,"script"));
</script>
<?php wp_footer(); ?>
</body>
</html>