123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- /**
- * The template for displaying the front page
- *
- * @package Ixion
- */
- if ( 'posts' == get_option( 'show_on_front' ) ) :
- get_template_part( 'index' );
- else :
- get_header();
- ?>
- <div id="primary" class="content-area">
- <main id="main" class="site-main" role="main">
- <?php
- if ( have_posts() ) :
- /* Start the Loop */
- while ( have_posts() ) : the_post();
- if ( '' !== get_the_content() ) {
- /*
- * Include the Post-Format-specific template for the content.
- * If you want to override this in a child theme, then include a file
- * called content-___.php (where ___ is the Post Format name) and that will be used instead.
- */
- get_template_part( 'components/page/content', 'page' );
- }
- endwhile;
- get_template_part( 'components/features/recent-posts/recent-posts' );
- else :
- get_template_part( 'components/post/content', 'none' );
- endif; ?>
- </main>
- </div>
- <?php
- get_sidebar();
- get_footer();
- endif;
|