<?php
/**
* The template for displaying all pages
*
* @package YourTheme
*/
get_header(); ?>
<main id="primary" class="site-main">
<?php
if ( function_exists( 'is_woocommerce' ) && is_woocommerce() ) {
woocommerce_content();
} else {
while ( have_posts() ) :
the_post();
the_content();
endwhile;
}
?>
</main>
<?php get_footer(); ?>