123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * Template Name: Feature
- */
- ?>
- <?php get_template_part( 'part', 'header' ) ?>
- <body class="bg-gray">
- <?php get_template_part( 'part', 'nav' ) ?>
- <?php
- if(have_posts()): while (have_posts()): the_post();
- global $post;
- $thumb = get_the_post_thumbnail_url( $post, 'full' );
- ?>
- <div id="banner-swiper" class="swiper">
- <div class="swiper-wrapper">
- <div class="swiper-slide banner" style="--bg-sm: url('https://test.ptcrepair.com.au/wp-content/uploads/2022/05/s-5.jpg'); --bg-md: url('https://test.ptcrepair.com.au/wp-content/uploads/2022/05/s-5.jpg')"></div>
- </div>
- <div class="swiper-pagination"></div>
- </div>
- <div class="section">
- <div class="inner">
- <h2><?php the_title( ); ?></h2>
- <?php the_content() ?>
- <button class="ptc-button" data-action="buy">BUY NOW</button>
- </div>
- </div>
- <?php endwhile; else: endif; ?>
- <?php get_template_part( 'part', 'footer' ) ?>
- </body>
- </html>
|