%PDF- %PDF-
Direktori : /var/www/cwg/wp-content/themes/cwg/ |
Current File : //var/www/cwg/wp-content/themes/cwg/bag.php |
<?php /** * The main template file * Template Name: Bag * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package onepoint */ get_header(); ?> <!----Should be placed when there is no carousel--> <div class="js-headerGap h-[51px]"></div> <?php if (have_posts()) { while (have_posts()) { the_post(); ?> <section class="mt-[50px] mb-10 cwg-container-main"> <div class="flex items-center gap-[10px] text-[12px] mb-[15px]"> <a href="<?php echo home_url(); ?>" class="text-grey-textLight">Home</a> <span> <img src="<?= get_template_directory_uri(); ?>/assets/img/icon-black-navigation-next.svg" alt="arrow" class=""> </span> <a href="<?php get_permalink(198850) ?>" class="font-light overflow-hidden whitespace-nowrap overflow-ellipsis leading-[16px]">Bag</a> </div> <h1 class="text-[16px] font-medium leading-6 mb-[15px] uppercase">Your bag</h1> <div id="woocommerce"> <?php echo do_shortcode("[woocommerce_cart]"); ?> </div> </section> <?php } } ?> <?php get_footer();