2015-09-09 08:49:39 +00:00
|
|
|
<?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 will use a
|
|
|
|
* different template.
|
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
|
|
|
|
2016-11-01 15:25:21 +00:00
|
|
|
get_header();
|
|
|
|
?>
|
2015-09-09 08:49:39 +00:00
|
|
|
|
2016-11-14 14:16:24 +00:00
|
|
|
<?php
|
|
|
|
$container = get_theme_mod('understrap_container_type');
|
|
|
|
$sidebar_pos = get_theme_mod('understrap_sidebar_position');
|
|
|
|
?>
|
|
|
|
|
2016-01-04 13:11:58 +00:00
|
|
|
<div class="wrapper" id="woocommerce-wrapper">
|
2016-11-01 15:25:21 +00:00
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
2016-11-14 14:16:24 +00:00
|
|
|
<!-- Do the left sidebar check -->
|
|
|
|
<?php get_template_part( 'global-templates/left-sidebar-check', 'none' ); ?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-01 16:13:23 +00:00
|
|
|
<main class="site-main" id="main" role="main">
|
2016-11-01 15:25:21 +00:00
|
|
|
|
|
|
|
<!-- The WooCommerce loop -->
|
|
|
|
|
|
|
|
<?php
|
|
|
|
if (is_singular('product')) {
|
|
|
|
|
|
|
|
woocommerce_content();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
//For ANY product archive.
|
|
|
|
//Product taxonomy, product search or /shop landing page etc.
|
2016-11-15 11:22:20 +00:00
|
|
|
wc_get_template('archive-product.php');
|
2016-11-01 15:25:21 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
</main><!-- #main -->
|
|
|
|
|
|
|
|
</div><!-- #primary -->
|
|
|
|
|
2016-11-14 14:16:24 +00:00
|
|
|
<!-- Do the right sidebar check -->
|
|
|
|
<?php if ( 'right' === $sidebar_pos || 'both' === $sidebar_pos ): ?>
|
|
|
|
|
|
|
|
<?php get_sidebar( 'right' ); ?>
|
|
|
|
|
|
|
|
<?php endif; ?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
|
|
|
</div><!-- Container end -->
|
|
|
|
|
2015-09-09 08:49:39 +00:00
|
|
|
</div><!-- Wrapper end -->
|
|
|
|
|
|
|
|
<?php get_footer(); ?>
|