<?php
/**
 * Theme Index Section for our theme.
 *
 * @package    ThemeGrill
 * @subpackage ColorMag
 * @since      ColorMag 1.0
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

get_header();

/**
 * Hook: colormag_before_body_content.
 */
do_action( 'colormag_before_body_content' );
?>

	<div id="primary">
		<div id="content" class="clearfix">

			<?php
			if ( have_posts() ) :

				/**
				 * Hook: colormag_before_index_page_loop.
				 */
				do_action( 'colormag_before_index_page_loop' );

				while ( have_posts() ) :
					the_post();

					/**
					 * Include the Post-Type-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 Type name) and that will be used instead.
					 */
					get_template_part( 'content', '' );
				endwhile;

				/**
				 * Hook: colormag_after_index_page_loop.
				 */
				do_action( 'colormag_after_index_page_loop' );

				if ( true === apply_filters( 'colormag_index_page_navigation_filter', true ) ) :
					get_template_part( 'navigation', 'none' );
				endif;

			else :

				if ( true === apply_filters( 'colormag_index_page_no_results_filter', true ) ) :
					get_template_part( 'no-results', 'none' );
				endif;

			endif;
			?>

		</div><!-- #content -->
	</div><!-- #primary -->

<?php
colormag_sidebar_select();

/**
 * Hook: colormag_after_body_content.
 */
do_action( 'colormag_after_body_content' );

get_footer();
