21 lines
543 B
PHP
21 lines
543 B
PHP
<?php
|
|
/**
|
|
* Static homepage (landing) template.
|
|
*
|
|
* @package Fragrance_Trade
|
|
*/
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
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(); ?>
|