<?php
/**
 * The template for displaying all single posts
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
 *
 * @package WordPress
 * @subpackage lzrestaurant
 * @since 1.0
 * @version 1.0
 */

get_header(); ?>

<div class="container">
	<div class="content-area">
		<main id="main" class="site-main" role="main">

		<?php
	    $layout_option = get_theme_mod( 'lzrestaurant_theme_options','One Column');
	    if($layout_option == 'Left Sidebar'){ ?>
	    	<div class="row">
	        <div id="sidebar" class="col-md-4 col-sm-4"><?php dynamic_sidebar('sidebar-1'); ?></div>
	        <div id="" class="content_area col-md-8 col-sm-8">
	    	<section id="post_section" class="">
				<?php
				/* Start the Loop */
				while ( have_posts() ) : the_post();

					get_template_part( 'template-parts/post/content', get_post_format() );

					// If comments are open or we have at least one comment, load up the comment template.
					if ( comments_open() || get_comments_number() ) :
						comments_template();
					endif;

					the_post_navigation( array(
						'prev_text' => '<span class="screen-reader-text">' . __( 'Previous Post', 'lzrestaurant' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Previous', 'lzrestaurant' ) . '</span> <span class="nav-title"><span class="nav-title-icon-wrapper">' . lzrestaurant_get_svg( array( 'icon' => 'arrow-left' ) ) . '</span>%title</span>',
						'next_text' => '<span class="screen-reader-text">' . __( 'Next Post', 'lzrestaurant' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Next', 'lzrestaurant' ) . '</span> <span class="nav-title">%title<span class="nav-title-icon-wrapper">' . lzrestaurant_get_svg( array( 'icon' => 'arrow-right' ) ) . '</span></span>',
					) );

				endwhile; // End of the loop.
				?>
			</section>
			</div>
			</div>
			<div class="clearfix"></div>
		<?php }else if($layout_option == 'Right Sidebar'){ ?>
			<div class="row">
			<div id="" class="content_area col-md-8 col-sm-8">
			<section id="post_section" class="">
				<?php
				/* Start the Loop */
				while ( have_posts() ) : the_post();

					get_template_part( 'template-parts/post/content', get_post_format() );

					// If comments are open or we have at least one comment, load up the comment template.
					if ( comments_open() || get_comments_number() ) :
						comments_template();
					endif;

					the_post_navigation( array(
						'prev_text' => '<span class="screen-reader-text">' . __( 'Previous Post', 'lzrestaurant' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Previous', 'lzrestaurant' ) . '</span> <span class="nav-title"><span class="nav-title-icon-wrapper">' . lzrestaurant_get_svg( array( 'icon' => 'arrow-left' ) ) . '</span>%title</span>',
						'next_text' => '<span class="screen-reader-text">' . __( 'Next Post', 'lzrestaurant' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Next', 'lzrestaurant' ) . '</span> <span class="nav-title">%title<span class="nav-title-icon-wrapper">' . lzrestaurant_get_svg( array( 'icon' => 'arrow-right' ) ) . '</span></span>',
					) );

				endwhile; // End of the loop.
				?>
			</section>
			</div>
			<div id="sidebar" class="col-md-4 col-sm-4"><?php dynamic_sidebar('sidebar-1'); ?></div>
			</div>
		<?php }else if($layout_option == 'One Column'){ ?>
			<div class="row">
			<div id="" class="content_area col-md-12 col-sm-12">
			<section id="post_section" class="">
				<?php
				/* Start the Loop */
				while ( have_posts() ) : the_post();

					get_template_part( 'template-parts/post/content', get_post_format() );

					// If comments are open or we have at least one comment, load up the comment template.
					if ( comments_open() || get_comments_number() ) :
						comments_template();
					endif;

					the_post_navigation( array(
						'prev_text' => '<span class="screen-reader-text">' . __( 'Previous Post', 'lzrestaurant' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Previous', 'lzrestaurant' ) . '</span> <span class="nav-title"><span class="nav-title-icon-wrapper">' . lzrestaurant_get_svg( array( 'icon' => 'arrow-left' ) ) . '</span>%title</span>',
						'next_text' => '<span class="screen-reader-text">' . __( 'Next Post', 'lzrestaurant' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Next', 'lzrestaurant' ) . '</span> <span class="nav-title">%title<span class="nav-title-icon-wrapper">' . lzrestaurant_get_svg( array( 'icon' => 'arrow-right' ) ) . '</span></span>',
					) );

				endwhile; // End of the loop.
				?>
			</section>
			</div>
			</div>
		<?php }else if($layout_option == 'Three Columns'){ ?>	
			<div class="row">
			<div id="sidebar" class="col-md-3 col-sm-3"><?php dynamic_sidebar('sidebar-1'); ?></div>	
			<div id="" class="content_area col-md-6 col-sm-6">
			<section id="post_section" class="">
				<?php
				/* Start the Loop */
				while ( have_posts() ) : the_post();

					get_template_part( 'template-parts/post/content', get_post_format() );

					// If comments are open or we have at least one comment, load up the comment template.
					if ( comments_open() || get_comments_number() ) :
						comments_template();
					endif;

					the_post_navigation( array(
						'prev_text' => '<span class="screen-reader-text">' . __( 'Previous Post', 'lzrestaurant' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Previous', 'lzrestaurant' ) . '</span> <span class="nav-title"><span class="nav-title-icon-wrapper">' . lzrestaurant_get_svg( array( 'icon' => 'arrow-left' ) ) . '</span>%title</span>',
						'next_text' => '<span class="screen-reader-text">' . __( 'Next Post', 'lzrestaurant' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Next', 'lzrestaurant' ) . '</span> <span class="nav-title">%title<span class="nav-title-icon-wrapper">' . lzrestaurant_get_svg( array( 'icon' => 'arrow-right' ) ) . '</span></span>',
					) );

				endwhile; // End of the loop.
				?>
			</section>
			</div>
			<div id="sidebar" class="col-md-3 col-sm-3"><?php dynamic_sidebar('sidebar-2'); ?></div>
			</div>
		<?php }else if($layout_option == 'Four Columns'){ ?>
		<div class="row">
		<div id="sidebar" class="col-md-3"><?php dynamic_sidebar('sidebar-1'); ?></div>
		<div id="" class="content_area col-md-3">
		<section id="post_section" class="">
				<?php
				/* Start the Loop */
				while ( have_posts() ) : the_post();

					get_template_part( 'template-parts/post/content', get_post_format() );

					// If comments are open or we have at least one comment, load up the comment template.
					if ( comments_open() || get_comments_number() ) :
						comments_template();
					endif;

					the_post_navigation( array(
						'prev_text' => '<span class="screen-reader-text">' . __( 'Previous Post', 'lzrestaurant' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Previous', 'lzrestaurant' ) . '</span> <span class="nav-title"><span class="nav-title-icon-wrapper">' . lzrestaurant_get_svg( array( 'icon' => 'arrow-left' ) ) . '</span>%title</span>',
						'next_text' => '<span class="screen-reader-text">' . __( 'Next Post', 'lzrestaurant' ) . '</span><span aria-hidden="true" class="nav-subtitle">' . __( 'Next', 'lzrestaurant' ) . '</span> <span class="nav-title">%title<span class="nav-title-icon-wrapper">' . lzrestaurant_get_svg( array( 'icon' => 'arrow-right' ) ) . '</span></span>',
					) );

				endwhile; // End of the loop.
				?>
		</section>
		</div>
		<div id="sidebar" class="col-md-3"><?php dynamic_sidebar('sidebar-2'); ?></div>
        <div id="sidebar" class="col-md-3"><?php dynamic_sidebar('sidebar-3'); ?></div>
        </div>
    <?php }else if($layout_option == 'Grid Layout'){ ?>
    	<div class="row">
    	<div id="" class="content_area col-md-8 col-sm-8">
		<section id="post_section" class="">
			<div class="row">
				<?php
				if ( have_posts() ) :

					/* Start the Loop */
					while ( have_posts() ) : the_post();

						/*
						 * 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( 'template-parts/post/content', get_post_format() );

					endwhile;

					the_posts_pagination( array(
						'prev_text' => lzrestaurant_get_svg( array( 'icon' => 'arrow-left' ) ) . '<span class="screen-reader-text">' . __( 'Previous page', 'lzrestaurant' ) . '</span>',
						'next_text' => '<span class="screen-reader-text">' . __( 'Next page', 'lzrestaurant' ) . '</span>' . lzrestaurant_get_svg( array( 'icon' => 'arrow-right' ) ),
						'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'lzrestaurant' ) . ' </span>',
					) );

				else :

					get_template_part( 'template-parts/post/content', 'none' );

				endif;
				?>
			</div>
		</section>
		</div>
		<div id="sidebar" class="col-md-4 col-sm-4"><?php dynamic_sidebar('sidebar-1'); ?></div>	
		</div>		
		<?php } ?>
		</main><!-- #main -->
	</div>
</div><!-- .container -->

<?php get_footer();
