• File: template-woo.php
  • Full Path: /home/chassiw/www/wp-content/themes/buildbench/template/template-woo.php
  • File size: 957 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
/**
 * Template Name: WooCommerce Template
 *
 * The template for displaying all pages.
 */
?>

<?php get_header();

  get_template_part( 'template-parts/banner/content', 'banner-shop' ); 

?>

<div class="woo-xs-content"  role="main">
    <div class="container">
        <div class="row">
            <div class="<?php echo esc_attr($sidebar = is_active_sidebar( 'sidebar-woo' ) == true && is_shop() ? 'col-md-9' : 'col-md-12');  ?>">
				<?php while ( have_posts() ) : the_post(); ?>
					<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

						<!-- Article content -->
						<div class="entry-content">
							<?php the_content(); ?>
						</div> <!-- end entry-content -->

					</article>
				
				<?php endwhile; ?>
				
            </div> <!-- end main-content -->
			<?php
				if ( is_active_sidebar( 'sidebar-woo' ) && is_shop() ) {
					get_sidebar( 'woo' );
				}
			?>

        </div>
    </div>
</div> 
<?php get_footer(); ?>