-
Notifications
You must be signed in to change notification settings - Fork 74
/
footer.php
executable file
·51 lines (40 loc) · 1.34 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
<?php
/**
* Footer
*
* Displays content shown in the footer section
*
* @package WordPress
* @subpackage Foundation, for WordPress
* @since Foundation, for WordPress 1.0
*/
?>
<div class="content-dock"></div>
</div> <!-- /.content -->
<div class="row dock">
<?php dynamic_sidebar("Dock"); ?>
</div>
<?php wp_footer(); ?>
<!-- CDN Fallback -->
<script type="text/javascript">
if (typeof jQuery == 'undefined') {
document.write(unescape("%3Cscript src='<?php bloginfo('template_url'); ?>/javascripts/vendor/jquery.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
<script src="<?php bloginfo('template_url'); ?>/javascripts/foundation/foundation.js"></script>
<script>
var mq = window.matchMedia( "(min-width: 960px)" );
if (mq.matches) {
document.write(unescape("%3Cscript src='<?php bloginfo('template_url'); ?>/javascripts/foundation/foundation.orbit.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
<script src="<?php bloginfo('template_url'); ?>/javascripts/vendor/app.js"></script>
<!-- <script src="<?php bloginfo('template_url'); ?>/javascripts/vendor/twitterFetcher_v10_min.js"></script> -->
<script>
$(function() {
$(document).foundation();
});
// twitterFetcher.fetch('393025966789754880', 'tweets', 1, true, true, false);
</script>
</body>
</html>