-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfooter.html
82 lines (72 loc) · 3.2 KB
/
footer.html
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
</div><!-- #main-content -->
</div><!-- #main -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class='wrap'>
<div id="supplementary">
<div id="footer-sidebar" class="footer-sidebar widget-area" role="complementary">
</div><!-- #footer-sidebar -->
</div><!-- #supplementary -->
<div id='footer-share'>
<a href="http://twitter.com/phplist" target='_blank' class='ics sm twitter'></a>
<a href="http://www.linkedin.com/company/phplist" target='_blank' class='ics sm linkedin'></a>
<a href="http://youtube.com/phplist" target='_blank' class='ics sm youtube'></a>
<a href="http://facebook.com/phplist" target='_blank' class='ics sm facebook'></a>
<a href="http://plus.google.com/+phplist" target='_blank' class='ics sm google'></a>
</div>
<div class='copyright'>phpList is a registered limited company - © phpList 2001 - 2015<br />UK Company No. 07582966 - VAT Registration 122 0788 37</div>
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script>
jQuery(document).ready(function(){
jQuery('#header-buttons li').click(function(){
jQuery('#header-buttons li').removeClass('active');
jQuery(this).addClass('active');
});
jQuery('#header-buttons li a').mouseover(function(){
jQuery('#header-buttons li').removeClass('active');
});
jQuery('.header-main').mouseleave(function(){
jQuery('#header-buttons li').removeClass('active');
});
jQuery('.info').tooltip({position: {
my: "center bottom-20",
at: "center top",
using: function( position, feedback ) {
jQuery( this ).css( position );
jQuery( "<div>" )
.addClass( "arrow" )
.addClass( feedback.vertical )
.addClass( feedback.horizontal )
.appendTo( this );
}
}
});
});
$(function() {
var uri =location.pathname.split("/")[2];
$('nav ul ul a[href^="' + uri + '"]').addClass('active');
$('nav ul ul a[href^="' + uri + '"]').parent().parent().addClass('active');
$('nav ul ul a[href^="' + uri + '"]').parent().parent().parent().addClass('active');
});
</script>
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(["setCookieDomain", "*.phplist.com"]);
_paq.push(["setDomains", ["*.phplist.com"]]);
_paq.push(["trackPageView"]);
_paq.push(["enableLinkTracking"]);
(function() {
var u=(("https:" == document.location.protocol) ? "https" : "http") + "://phplist.piwikpro.com/";
_paq.push(["setTrackerUrl", u+"piwik.php"]);
_paq.push(["setSiteId", "2"]);
var d=document, g=d.createElement("script"), s=d.getElementsByTagName("script")[0]; g.type="text/javascript";
g.defer=true; g.async=true; g.src=u+"piwik.js"; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Piwik Code -->
</body>
</html>