Make WordPress Core


Ignore:
Timestamp:
08/14/2013 04:38:01 PM (13 years ago)
Author:
lancewillett
Message:

Twenty Fourteen: first pass at matching code standards achieved with Twenty Thirteen development. See #24858, props obenland.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/footer.php

    r24832 r25021  
    33 * The template for displaying the footer.
    44 *
    5  * Contains the closing of the id=main div and all content after
     5 * Contains footer content and the closing of the #main and #page div elements.
    66 *
    77 * @package WordPress
     
    1010?>
    1111
    12     </div><!-- #main .site-main -->
     12        </div><!-- #main -->
    1313
    14     <?php get_sidebar( 'footer' ); ?>
     14        <?php get_sidebar( 'footer' ); ?>
    1515
    16     <footer id="colophon" class="site-footer" role="contentinfo">
    17         <div class="site-info">
    18             <?php do_action( 'twentyfourteen_credits' ); ?>
    19             <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentythirteen' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentythirteen' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); ?></a>
    20         </div><!-- .site-info -->
    21     </footer><!-- #colophon .site-footer -->
    22 </div><!-- #page .hfeed .site -->
     16        <footer id="colophon" class="site-footer" role="contentinfo">
     17            <div class="site-info">
     18                <?php do_action( 'twentyfourteen_credits' ); ?>
     19                <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentythirteen' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentythirteen' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); ?></a>
     20            </div><!-- .site-info -->
     21        </footer><!-- #colophon -->
     22    </div><!-- #page -->
    2323
    24 <?php wp_footer(); ?>
    25 
     24    <?php wp_footer(); ?>
    2625</body>
    2726</html>
Note: See TracChangeset for help on using the changeset viewer.