73 |
toni |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* The template for displaying the footer.
|
|
|
4 |
*
|
|
|
5 |
* Contains the closing of the id=main div and all content after
|
|
|
6 |
*
|
|
|
7 |
* @package Cazuela
|
|
|
8 |
* @since Cazuela 1.0
|
|
|
9 |
*/
|
|
|
10 |
?>
|
|
|
11 |
|
|
|
12 |
</div><!-- .inner -->
|
|
|
13 |
</div><!-- #main .site-main -->
|
|
|
14 |
|
|
|
15 |
<?php
|
|
|
16 |
// Before Footer theme hook callback
|
|
|
17 |
thsp_hook_before_footer();
|
|
|
18 |
?>
|
|
|
19 |
|
|
|
20 |
<footer id="colophon" class="site-footer" role="contentinfo">
|
|
|
21 |
<?php if ( is_active_sidebar( 'footer-widget-area' ) ) : ?>
|
|
|
22 |
<div class="inner clearfix">
|
|
|
23 |
<section id="footer-widget-area" class="<?php echo thsp_count_widgets( 'footer-widget-area' ); ?>">
|
|
|
24 |
<?php dynamic_sidebar( 'footer-widget-area' ); ?>
|
|
|
25 |
</section><!-- #footer-widgets -->
|
|
|
26 |
</div><!-- .inner -->
|
|
|
27 |
<?php endif; ?>
|
|
|
28 |
|
|
|
29 |
<div id="footer-nav" class="inner clearfix">
|
|
|
30 |
<?php
|
|
|
31 |
// Footer menu
|
|
|
32 |
wp_nav_menu( array(
|
|
|
33 |
'theme_location' => 'footer',
|
|
|
34 |
'container' => 'nav',
|
|
|
35 |
'container_class' => 'footer-navigation',
|
|
|
36 |
'fallback_cb' => ''
|
|
|
37 |
) );
|
|
|
38 |
?>
|
|
|
39 |
|
|
|
40 |
<div id="footer-credits">
|
235 |
toni |
41 |
<a href="<?php echo esc_url( __( 'http://thematosoup.com/themes/cazuela/', 'cazuela' ) ); ?>" title="<?php esc_attr_e( 'Cazuela — free, responsive WordPress theme', 'cazuela' ); ?>" rel="nofollow"><?php echo __( 'Cazuela theme', 'cazuela' ); ?></a> powered by <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'cazuela' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'cazuela' ); ?>"><?php _e( 'WordPress', 'cazuela' ); ?></a>
|
73 |
toni |
42 |
</div><!-- #footer-credits -->
|
|
|
43 |
</div><!-- #footer-nav -->
|
|
|
44 |
|
|
|
45 |
<?php
|
|
|
46 |
// Before Footer theme hook callback
|
|
|
47 |
thsp_hook_after_footer();
|
|
|
48 |
?>
|
|
|
49 |
</footer><!-- #colophon .site-footer -->
|
|
|
50 |
|
|
|
51 |
</div><!-- #page .hfeed .site -->
|
|
|
52 |
|
|
|
53 |
<?php wp_footer(); ?>
|
|
|
54 |
|
|
|
55 |
</body>
|
74 |
toni |
56 |
</html>
|