- WordPress classic theme for car tinting/foil shop - 13 homepage template parts - Customizer panel with 13 sections - RFQ inquiry form handler - Bootstrap 5.3 + AOS + Colorbox frontend - 13 SVG placeholder images - Chinese content defaults
11 lines
310 B
PHP
11 lines
310 B
PHP
<?php
|
|
/** Page template. @package Fragrance_Trade */
|
|
get_header();
|
|
?>
|
|
<main id="primary" class="site-main container py-5 fragrance-content-area">
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
|
<?php get_template_part( 'template-parts/content', 'page' ); ?>
|
|
<?php endwhile; ?>
|
|
</main>
|
|
<?php get_footer(); ?>
|