<?php
/**
* Minimal single product template.
* For full template, copy from WooCommerce plugin templates and customize.
*/
get_header();
?>
<main class="container" style="padding:24px 0">
<?php while ( have_posts() ) : the_post(); ?>
<?php wc_get_template_part( 'content', 'single-product' ); ?>
<?php endwhile; ?>
</main>
<?php get_footer(); ?>