-
Notifications
You must be signed in to change notification settings - Fork 16
/
footer.php
132 lines (104 loc) · 4.4 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
<?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 Twenty_Ten
* @since Twenty Ten 1.0
*/
?>
</div>
<div id="footer" class="clearfix">
<div id="EPI-info">
<?php
if(function_exists('wp_nav_menu')) {
wp_nav_menu(array(
'theme_location' => 'top-nav',
'container' => '',
'container_id' => 'clearfix',
'menu_id' => 'top-nav',
// 'fallback_cb' => 'topnav_fallback',
));
} else {
?>
<!-- Hard-coded menu -->
<ul class="clearfix">
<li><a href="http://www.epi.org">EPI.org</a></li>
<li><a href="http://www.epi.org/pages/about_the_economic_policy_institute/">About EPI</a></li>
<li><a href="https://secure.epi.org/page/contribute">Support EPI</a></li>
</ul>
<?php } ?>
</div>
<div id="identity-copyright" class="png_bg">
<span>Economic Policy Institute</span>
<!--Copyright © 2011 Economic Policy Institute. All rights reserved.-->
This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons <!-- Attribution-ShareAlike 3.0 --> License</a>
</div>
<div id="share-page">
<span>Share</span>
<ul class="clearfix">
<li>
<!-- ADDTHIS BUTTON BEGIN -->
<script type="text/javascript">
var addthis_config = {
username: "episocial"
};
</script>
<a href="http://www.addthis.com/bookmark.php"
class="addthis_button"
addthis:url="http://www.stateofworkingamerica.com"
addthis:title="State of Working America"
addthis:description="State of Working America">
<img src="http://s7.addthis.com/static/btn/sm-plus.gif" width="16" height="16" alt="Share" /></a>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js"></script>
<!-- ADDTHIS BUTTON END -->
</li>
<li><a class="ir twitter" href="http://api.addthis.com/oexchange/0.8/forward/twitter/offer?url=http://www.stateofworkingamerica.com">Twitter</a></li>
<li><a class="ir facebook" href="http://api.addthis.com/oexchange/0.8/forward/facebook/offer?url=http://www.stateofworkingamerica.com">Facebook</a></li>
</ul>
</div>
<ul id="utility-nav">
<li>
<!-- <a href="/pages/view/3">Site Map</a> | -->
<!-- <a href="/pages/view/4">Chart Index</a> -->
</li>
<!--
<li><a href="/pages/about">About the State of Working America</a></li>
<li><a href="http://www.epi.org/">EPI Home</a></li>
-->
</ul>
</div>
</div> <!--! end of #container -->
<div id="media-info" class="clearfix">
<div id="for-the-media">
<h4>For the media</h4>
<!-- <h4>Economic Policy Institute</h4> -->
<!-- <span class="pa"><a href="http://www.epi.org/publications/entry/news_from_epi_epi_to_launch_electronic_version_of_state_of_working_america_/">Press Release</a></span> -->
<span class="org">Economic Policy Institute</span>
<span class="department">Media Relations Department</span>
<span class="tel">(202) 775–8810 | <a class="email" href="mailto:[email protected]">[email protected]</a></span>
</div>
</div>
<!-- Javascript at the bottom for fast page loading -->
<!-- Grab Google CDN's jQuery. fall back to local if necessary -->
<!-- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script> -->
<!-- <script>!window.jQuery && document.write(unescape('%3Cscript src="js/libs/jquery-1.4.2.js"%3E%3C/script%3E'))</script> -->
<!-- <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script> -->
<!-- scripts concatenated and minified via ant build script-->
<script src="<?php echo get_stylesheet_directory_uri() ?>/js/plugins.js"></script>
<script src="<?php echo get_stylesheet_directory_uri() ?>/js/script.js"></script>
<!-- end concatenated and minified scripts-->
<script src="<?php echo get_stylesheet_directory_uri() ?>/js/boxy.js"></script>
<script type="text/javascript">
jQuery(function ($) {
// $('#nav li:has(ul)').addClass("dd");
$('#nav > li').not(':has(ul)').find('a').css({backgroundImage: 'none'});
});
</script>
<?php wp_footer(); ?>
<script type="text/javascript" src="<?php echo get_stylesheet_directory_uri() ?>/font-symbolset/ss-standard.js"></script>
</body>
</html>