- 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
17 lines
501 B
PHP
17 lines
501 B
PHP
<?php
|
|
/**
|
|
* Static homepage (landing) template.
|
|
*
|
|
* @package Fragrance_Trade
|
|
*/
|
|
get_header();
|
|
?>
|
|
<main id="primary" class="site-main fragrance-homepage">
|
|
<?php get_template_part( 'template-parts/home/hero' ); ?>
|
|
<?php get_template_part( 'template-parts/home/trust' ); ?>
|
|
<?php get_template_part( 'template-parts/home/service-teaser' ); ?>
|
|
<?php get_template_part( 'template-parts/home/case-teaser' ); ?>
|
|
<?php get_template_part( 'template-parts/home/cta' ); ?>
|
|
</main>
|
|
<?php get_footer(); ?>
|