forked from arjenvdbrink/rafael
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
133 lines (117 loc) · 4.65 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content
* after. Calls sidebar-footer.php for bottom widgets.
*
* @package WordPress
* @subpackage Foursquare Two
* @since Foursquare Two 1.0
*/
?>
<footer>
<div class="slogan">
<h2>Een vruchtbare familie van gezonde gemeenten</h2>
</div>
<div class="container">
<div class="logo span3">
<a href="http://rafael.nl/"><img src="<?php echo get_stylesheet_directory_uri().'/style/images/rn_logo_small.png'; ?>"></a><br />
</div>
<div class="copyright span2">
©
<script type="text/javascript">
now = new Date
theYear=now.getYear()
if (theYear < 1900)
theYear=theYear+1900
document.write(theYear)
</script>
<a href="<?php echo home_url( '/' ) ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a><br />
</div><!--End copyright-->
<div class="social span4">
<a href="http://www.twitter.com/rafaelnederland/">
<img class="alignright size-full"
alt="twitter-icon"
src="<?php echo get_stylesheet_directory_uri().'/style/icons/48x48/twitter-icon.png'; ?>"
width="38"
height="38" /></a>
<a href="https://www.facebook.com/pages/Rafa%C3%ABl-Nederland/184240724950982?fref=ts">
<img class="alignright size-full"
alt="facebook-icon"
src="<?php echo get_stylesheet_directory_uri().'/style/icons/48x48/facebook-icon.png'; ?>"
width="38"
height="38" /></a>
<a href="https://plus.google.com/100946726272343026292">
<img class="alignright size-full"
alt="gplus-icon"
src="<?php echo get_stylesheet_directory_uri().'/style/icons/48x48/gplus-icon.png'; ?>"
width="38"
height="38" /></a>
<a href="/feed/">
<img class="alignright size-full"
alt="rss-icon"
src="<?php echo get_stylesheet_directory_uri().'/style/icons/48x48/rss-icon.png'; ?>"
width="38"
height="38" /></a>
</div><!--end social-->
</div>
</footer>
<!-- JAVASCRIPT (located at page bottom for fast load)
*********************************************************************** -->
<script src="<?php echo home_url( '/' ) ?>/wp-content/themes/Foursquare_Two/assets/js/bootstrap-collapse-min.js"></script>
<script src="<?php echo home_url( '/' ) ?>/wp-content/themes/Foursquare_Two/assets/js/bootstrap-transition-min.js"></script>
<script src="<?php echo home_url( '/' ) ?>/wp-content/themes/Foursquare_Two/assets/js/bootstrap-modal-min.js"></script>
<script src="<?php echo home_url( '/' ) ?>/wp-content/themes/Foursquare_Two/assets/js/bootstrap-dropdown-min.js"></script>
<!-- Video.js: http://videojs.com/ -->
<script src="http://vjs.zencdn.net/c/video.js"></script>
<!-- RefTagger from Logos. Visit http://www.logos.com/reftagger. This code should appear directly before the </body> tag. -->
<script src="http://bible.logos.com/jsapi/referencetagging.js" type="text/javascript"></script>
<script type="text/javascript">
Logos.ReferenceTagging.lbsBibleVersion = "NKJV";
Logos.ReferenceTagging.lbsLinksOpenNewWindow = true;
Logos.ReferenceTagging.lbsLogosLinkIcon = "dark";
Logos.ReferenceTagging.lbsNoSearchTagNames = [ "h2", "h3", "h3", "h4", "h5", "h6", "span" ];
Logos.ReferenceTagging.lbsTargetSite = "biblia";
Logos.ReferenceTagging.tag();
Logos.ReferenceTagging.lbsCssOverride = true;
</script>
<script type="text/javascript">
// Adding the class selected background class to the body //
jQuery(document).ready(function(){
jQuery("body").addClass("<?php echo get_option('nt_background'); ?>");
});
</script>
<script type="text/javascript">
// Adding the class "dropdown" to li elements with submenus //
jQuery(document).ready(function(){
jQuery("ul.sub-menu").parent().addClass("dropdown");
jQuery("ul#main-menu li.dropdown a").addClass("");
jQuery("ul.sub-menu li a").removeClass("dropdown-toggle");
});
</script>
<script type="text/javascript">
jQuery(document).ready(function(){
// Don't FORGET: replace all $ with jQuery to prevent conflicts //
jQuery('a.dropdown-toggle')
.attr('data-toggle', 'dropdown');
});
</script>
<script type="text/javascript">
jQuery(document).ready(function(){
// Don't FORGET: replace all $ with jQuery to prevent conflicts //
jQuery(function () {
jQuery(".tablesorter-example").tablesorter({ sortList: [[1,0]] });
jQuery('.dropdown-toggle').dropdown();
})
});
</script>
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
</body>
</html>