- 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
18 lines
339 B
PHP
18 lines
339 B
PHP
<?php
|
|
/**
|
|
* FAQ page template.
|
|
*
|
|
* @package Fragrance_Trade
|
|
*/
|
|
get_header();
|
|
?>
|
|
<main id="primary" class="site-main">
|
|
<header class="page-header container py-5">
|
|
<h1><?php the_title(); ?></h1>
|
|
</header>
|
|
<div class="container pb-5">
|
|
<?php get_template_part( 'template-parts/home/faq' ); ?>
|
|
</div>
|
|
</main>
|
|
<?php get_footer(); ?>
|