File: /home/bastidas/web/bastidas.tv/public_html/wp-content/themes/gadget-store/page.php
<?php
/**
 * The template for displaying all pages.
 *
 * This is the template that displays all pages by default.
 * Please note that this is the WordPress construct of pages
 * and that other 'pages' on your WordPress site may use a
 * different template.
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package Gadget Store
 */
get_header(); ?>
<section class="blog-area inarea-blog-2-column-area three">
	<div class="container">
		<div class="row">
			<?php 
                $gadget_store_paged_sidebar_setting = get_theme_mod('gadget_store_paged_sidebar_setting','1');
                $gadget_store_sidebar_position = get_theme_mod('gadget_store_sidebar_position', 'right');
                $gadget_store_content_class = ($gadget_store_paged_sidebar_setting == '') ? 'col-lg-12' : 'col-lg-8';
                // Set classes for left or right sidebar
                $gadget_store_content_order_class = ($gadget_store_sidebar_position == 'left') ? 'order-lg-2' : '';
                $gadget_store_sidebar_order_class = ($gadget_store_sidebar_position == 'left') ? 'order-lg-1' : '';
	        ?>
	            <?php 
	                if ( class_exists( 'woocommerce' ) ) {
	                    if( is_account_page() || is_cart() || is_checkout() ) {
	                        echo '<div class="' . esc_attr($gadget_store_content_class . ' ' . $gadget_store_content_order_class) . '">';
	                    }
	                    else{
	                        echo '<div class="' . esc_attr($gadget_store_content_class . ' ' . $gadget_store_content_order_class) . '">';
	                    }
	                }
	                else {
	                    echo '<div class="' . esc_attr($gadget_store_content_class . ' ' . $gadget_store_content_order_class) . '">';
	                }
	            ?>
				<?php 	if( have_posts()) : the_post(); ?>
					<article class="post-items post-single">
						<?php if ( has_post_thumbnail() ) : ?>
							<div class="post-thumb mb-3"><?php the_post_thumbnail(); ?></div>
						<?php endif; ?>
						<div class="post-content">
							<?php the_content();
							wp_link_pages( array(
				                'before' => '<div class="page-links">' . __( 'Pages:', 'gadget-store' ),
				                'after'  => '</div>',
				            ) ); ?>
						</div>
					</article>
				<?php
					endif;
					
					if( $post->comment_status == 'open' ) { 
						comments_template( '', true ); // show comments 
					}
				?>
			</div>	
			<?php if( $gadget_store_paged_sidebar_setting != '') { ?> 
                <?php get_sidebar(); ?>
            <?php } ?>
		</div>
	</div>
</section>
<?php get_footer(); ?>