forked from greggsky/sandy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·47 lines (41 loc) · 1.14 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content after
*
* @package WordPress
* @subpackage Foghorn
* @since Foghorn 0.1
*/
?>
</div><!-- #main -->
<footer id="interoccupy">
<div class="about">
<!-- Footer-widget-left -->
<?php dynamic_sidebar( 'Footer-left' ) ?>
</div>
<!--
<div class="events">
<h3 class="events-title">Next meeting:</h3>
<p>None scheduled. Check back soon for the next call.</p>
</div>
-->
<div class="weather">
<!-- Footer-widget-middle -->
<?php dynamic_sidebar( 'Footer-middle' ) ?>
</div>
<div class="contact">
<!-- Footer-widget-right -->
<?php dynamic_sidebar( 'Footer-right' ) ?>
</div>
</footer>
<footer id="colophon" role="contentinfo">
<div id="site-generator">
General Inquiries: OccupySandy@interoccupy.net | Press: SandyPress@interoccupy.net | Medics: SandyMedics@interoccupy.net | Volunteers: OccupySandyVolunteers@gmail.com
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>