-
Notifications
You must be signed in to change notification settings - Fork 4
/
footer.php
39 lines (32 loc) · 1.32 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
<footer class="footer">
<div class="back-to-top">
<a href="">Back to top</a>
</div>
<div class="footer-nav">
<?php echo previous_post_link('%link', 'Previous'); ?>
<?php if(get_adjacent_post(false, '', true) && get_adjacent_post(false, '', false)) {
echo " / ";
} ?>
<?php echo next_post_link('%link', 'Next'); ?>
<!-- here in case there is nothing here to still occupy space -->
</div>
<aside class="offsite-links">
<a class="twitter-link" href="http://www.twitter.com/dhg">Twitter</a> /
<a class="dribbble-link" href="http://dribbble.com/dhg">Dribbble</a> /
<a class="rss-link" href="<?php bloginfo('rss2_url'); ?>">RSS</a>
</aside>
</footer>
</div> <!-- / .wrapper -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-20752697-1']);
_gaq.push(['_setDomainName', '.davegamache.com']);
_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>
</body>
</html>