-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
38 lines (34 loc) · 1013 Bytes
/
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
<?php
/**
* The template for displaying the footer
*
* Contains footer content and the closing of the #main and #page div elements.
*
* @package WordPress
* @subpackage Twenty_Twelve
* @since Twenty Twelve 1.0
*/
$admin_email = get_option( 'admin_email' );
?>
</section>
<footer class="footer">
<div class="column first">
<?php print apply_filters( 'the_content', get_option( 'pure_address' ) ); ?>
</div>
<div class="column">
<?php wp_nav_menu( array( 'theme_location' => 'main-menu', 'menu_class' => 'nav-menu' ) ); ?>
</div>
<!--
<div class="column">
<form name="subscribe" action="/subscribe">
<label>Keep in Touch.<input type="text" name="email" value="" placeholder="Email Address" /></label>
<input type="submit" name="submit" value="Subscribe" />
</form>
</div>
-->
<p class="copyright">Copyright © <?php print date( 'Y' ) ?> Contardi Consulting. All Rights Reserved.</p>
</footer>
</div><!-- #container -->
<?php wp_footer(); ?>
</body>
</html>