16 lines
460 B
PHP
16 lines
460 B
PHP
<?php
|
|
/**
|
|
* Template Name: Главная страница
|
|
*/
|
|
defined('ABSPATH') || exit;
|
|
get_header();
|
|
?>
|
|
<main class="front-page">
|
|
<?php get_template_part('templates/hero'); ?>
|
|
<?php get_template_part('templates/section-filter'); ?>
|
|
<?php get_template_part('templates/section-promo-wms'); ?>
|
|
<?php get_template_part('templates/section-subscribe'); ?>
|
|
<?php get_template_part('templates/section-clients'); ?>
|
|
</main>
|
|
<?php get_footer();
|