forked from wearerequired/required-foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
47 lines (45 loc) · 1.55 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 class=container div and all content after
*
* @package required+ Foundation
* @since required+ Foundation 0.1.0
*/
?>
<?php
/*
A sidebar in the footer? Yep. You can can customize
your footer with three columns of widgets.
*/
if ( ! is_404() )
get_sidebar( 'footer' );
?>
<div id="footer" class="row" role="contentinfo">
<div class="twelve columns">
<hr />
</div>
<div class="four columns">
<?php do_action( 'required_credits' ); ?>
<p><a href="<?php echo esc_url( __( 'http://wordpress.org/', 'requiredfoundation' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'requiredfoundation' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'requiredfoundation' ), 'WordPress' ); ?></a></p>
</div>
<div class="eight columns">
<?php wp_nav_menu( array(
'theme_location' => 'secondary',
'container' => false,
'menu_class' => 'inline-list right',
'fallback_cb' => false
) ); ?>
</div>
</div>
</div><!-- Container End -->
<!-- Prompt IE 6 users to install Chrome Frame. Remove this if you want to support IE 6.
chromium.org/developers/how-tos/chrome-frame-getting-started -->
<!--[if lt IE 7]>
<script defer src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
<script defer>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
<![endif]-->
<?php wp_footer(); ?>
</body>
</html>