Make WordPress Core

Changeset 38874


Ignore:
Timestamp:
10/23/2016 12:22:25 PM (8 years ago)
Author:
karmatosed
Message:

Revert [38873]: Commit does not keep file history due to deleted directory

The last commit to change directory structure for Twenty Seventee, didn't keep the file history so reverting in favour of doing that.

Props Ocean90

Location:
trunk/src/wp-content/themes/twentyseventeen
Files:
1 deleted
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyseventeen/archive.php

    r38873 r38874  
    3838                 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
    3939                 */
    40                 get_template_part( 'template-parts/post/content', get_post_format() );
     40                get_template_part( 'components/post/content', get_post_format() );
    4141
    4242            endwhile;
     
    5050        else :
    5151
    52             get_template_part( 'template-parts/post/content', 'none' );
     52            get_template_part( 'components/post/content', 'none' );
    5353
    5454        endif; ?>
  • trunk/src/wp-content/themes/twentyseventeen/footer.php

    r38873 r38874  
    2020        <div class="wrap">
    2121            <?php
    22             get_template_part( 'template-parts/footer/footer', 'widgets' );
     22            get_template_part( 'components/footer/footer', 'widgets' );
    2323
    2424            if ( has_nav_menu( 'social' ) ) : ?>
     
    3636            <?php endif;
    3737
    38             get_template_part( 'template-parts/footer/site', 'info' );
     38            get_template_part( 'components/footer/site', 'info' );
    3939            ?>
    4040        </div><!-- .wrap -->
  • trunk/src/wp-content/themes/twentyseventeen/front-page.php

    r38873 r38874  
    2121        if ( have_posts() ) :
    2222            while ( have_posts() ) : the_post();
    23                 get_template_part( 'template-parts/page/content', 'front-page' );
     23                get_template_part( 'components/page/content', 'front-page' );
    2424            endwhile;
    2525        else : // I'm not sure it's possible to have no posts when this page is shown, but WTH.
    26             get_template_part( 'template-parts/post/content', 'none' );
     26            get_template_part( 'components/post/content', 'none' );
    2727        endif; ?>
    2828
     
    3232        $titles = array();
    3333
    34         global $twentyseventeencounter; // Used in template-parts/page/content-front-page-panels.php file.
     34        global $twentyseventeencounter; // Used in components/page/content-front-page-panels.php file.
    3535
    3636        if ( 0 !== twentyseventeen_panel_count() || is_customize_preview() ) : // If we have pages to show.
     
    4545
    4646                    $titles[] = get_the_title(); // Put page titles in an array for use in navigation.
    47                     get_template_part( 'template-parts/page/content', 'front-page-panels' );
     47                    get_template_part( 'components/page/content', 'front-page-panels' );
    4848
    4949                    wp_reset_postdata();
  • trunk/src/wp-content/themes/twentyseventeen/header.php

    r38873 r38874  
    2929    <header id="masthead" class="site-header" role="banner">
    3030
    31         <?php get_template_part( 'template-parts/header/header', 'image' ); ?>
     31        <?php get_template_part( 'components/header/header', 'image' ); ?>
    3232
    3333        <?php if ( has_nav_menu( 'top' ) ) : ?>
    3434            <div class="navigation-top">
    3535                <div class="wrap">
    36                     <?php get_template_part( 'template-parts/navigation/navigation', 'top' ); ?>
     36                    <?php get_template_part( 'components/navigation/navigation', 'top' ); ?>
    3737                </div><!-- .wrap -->
    3838            </div><!-- .navigation-top -->
  • trunk/src/wp-content/themes/twentyseventeen/index.php

    r38873 r38874  
    4343                     * called content-___.php (where ___ is the Post Format name) and that will be used instead.
    4444                     */
    45                     get_template_part( 'template-parts/post/content', get_post_format() );
     45                    get_template_part( 'components/post/content', get_post_format() );
    4646
    4747                endwhile;
     
    5555            else :
    5656
    57                 get_template_part( 'template-parts/post/content', 'none' );
     57                get_template_part( 'components/post/content', 'none' );
    5858
    5959            endif;
  • trunk/src/wp-content/themes/twentyseventeen/page.php

    r38873 r38874  
    2525            while ( have_posts() ) : the_post();
    2626
    27                 get_template_part( 'template-parts/page/content', 'page' );
     27                get_template_part( 'components/page/content', 'page' );
    2828
    2929                // If comments are open or we have at least one comment, load up the comment template.
  • trunk/src/wp-content/themes/twentyseventeen/search.php

    r38873 r38874  
    3636                 * called content-search.php and that will be used instead.
    3737                 */
    38                 get_template_part( 'template-parts/post/content', 'excerpt' );
     38                get_template_part( 'components/post/content', 'excerpt' );
    3939
    4040            endwhile; // End of the loop.
  • trunk/src/wp-content/themes/twentyseventeen/single.php

    r38873 r38874  
    2121                while ( have_posts() ) : the_post();
    2222
    23                     get_template_part( 'template-parts/post/content', get_post_format() );
     23                    get_template_part( 'components/post/content', get_post_format() );
    2424
    2525                    // If comments are open or we have at least one comment, load up the comment template.
Note: See TracChangeset for help on using the changeset viewer.