
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php get_header(); ?>

<?php
$template = get_page_template_slug( presso_get_shop_page_id() );
if ( ! is_product() && 'page_large_title.php' == $template ) {
	get_template_part( 'templates/site/title-area' );
}
?>

<div class="vw-content-area clearfix <?php presso_the_sidebar_position_class(); ?>">
	<div class="container">
		<div class="row">
			<div class="col-sm-12">
				
			</div>
		</div>
		<div class="row">


			<main class="vw-content-main">

				<?php if ( ! is_shop() ) : ?>

				<div class="vw-woo-breadcrumb">
					<?php woocommerce_breadcrumb(); ?>
				</div>

				<?php endif; ?>

				<?php if ( ! is_product() && empty( $template ) ) : ?>

				<header class="vw-post-header">

					<h1 class="vw-post-title" <?php presso_itemprop( 'headline' ); ?>><?php echo wp_kses_post( get_the_title( presso_get_shop_page_id() ) ); ?></h1>
					
					<hr>

				</header>

				<?php endif; ?>

				<?php woocommerce_content(); ?>

			</main>

			<?php if ( presso_get_sidebar_position() != 'no' ) get_sidebar(); ?>

		</div>
	</div>
</div>

<?php get_footer(); ?>