equal
deleted
inserted
replaced
1 <?php |
|
2 /** |
|
3 * The template for displaying the footer |
|
4 * |
|
5 * Contains footer content and the closing of the #main and #page div elements. |
|
6 * |
|
7 * @package WordPress |
|
8 * @subpackage Twenty_Fourteen |
|
9 * @since Twenty Fourteen 1.0 |
|
10 */ |
|
11 ?> |
|
12 |
|
13 </div><!-- #main --> |
|
14 |
|
15 <footer id="colophon" class="site-footer" role="contentinfo"> |
|
16 |
|
17 <?php get_sidebar( 'footer' ); ?> |
|
18 |
|
19 <div class="site-info"> |
|
20 <?php do_action( 'twentyfourteen_credits' ); ?> |
|
21 <?php |
|
22 if ( function_exists( 'the_privacy_policy_link' ) ) { |
|
23 the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' ); |
|
24 } |
|
25 ?> |
|
26 <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfourteen' ) ); ?>" class="imprint"> |
|
27 <?php printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' ); ?> |
|
28 </a> |
|
29 </div><!-- .site-info --> |
|
30 </footer><!-- #colophon --> |
|
31 </div><!-- #page --> |
|
32 |
|
33 <?php wp_footer(); ?> |
|
34 </body> |
|
35 </html> |
|