-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
61 lines (44 loc) · 2.53 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
<footer class="footer" role="contentinfo">
<div class="footer-widgets row">
<!-- footer widgets -->
<div class="five columns footer-widget " id="footer-widget-left">
<?php
the_widget('WP_Widget_Text', 'title=Contact Us&text=<ul class="contact">
<li class="address"><span class="smalltext">Our mailing address is:</span><br>
<a href="http://www.mla.org">Modern Language Association</a><br>
85 Broad Street<br>
New York, NY 10004-2434<br>
</li>
<li class="email"><a class="email" href="mailto:[email protected]">[email protected]</a></li>
<li class="address"><span class="smalltext">On the Web:</span> <a href="http://www.mla.org">mla.org</a></li>
<li class="phone">646 576-5000</li>
</ul>', 'before_title=<h4>&after_title=</h4>');
?>
</div>
<div class="five columns footer-widget" id="footer-widget-middle">
<?php
$rss_options = array(
'url' => 'https://faq.mla.hcommons.org/feed/', // URL of the RSS Feed
'items' => 5, // Number of items to be displayed
);
the_widget('WP_Widget_RSS', $rss_options, 'before_title=<h4>&after_title=</h4>');
?>
</div>
<div class="six columns footer-widget " id="footer-widget-right">
<?php
the_widget('WP_Widget_Text', 'title=Get Help&text=<ul>
<li>Learn more <a href="https://commons.mla.org/about/">About <em>MLA Commons</em></a>.</li>
<li>See <a href="https://commons.mla.org/docs/getting-started/">Getting Started</a>.</li>
<li>Join the <a href="https://commons.mla.org/groups/welcome-group/">Help and How-To Group</a>.</li>
<li>E-mail us at <a href="mailto:[email protected]" class="email">[email protected]</a>.</li></ul>', 'before_title=<h4>&after_title=</h4>');
?>
</div>
</div>
<div style="clear:both;"></div>
<p class="source-org copyright">Copyright © 2012–2015 MLA. Powered by <a href="http://commonsinabox.org">Commons In A Box</a>. Based on a design by <a href="http://communitystructure.com">Community Structure</a>.<br/><a href="https://commons.mla.org/terms/">Terms of Service</a> • <a href="https://commons.mla.org/privacy/">Privacy Policy</a> • <a href="https://commons.mla.org/guidelines/">Guidelines for Participation</a></p>
</footer>
</div>
<?php // all js scripts are loaded in library/bones.php ?>
<?php wp_footer(); ?>
</body>
</html> <!-- end of site. what a ride! -->