13 lines
519 B
PHP
13 lines
519 B
PHP
<?php defined( 'ROOT_DIR' ) || exit; ?>
|
|
<?php $this->template_load("head.php"); ?>
|
|
<?php $this->template_load("header.php"); ?>
|
|
|
|
<main class="main">
|
|
<?php $this->template_load("main/first_screen.php"); ?>
|
|
<?php $this->template_load("main/catalog.php"); ?>
|
|
<?php $this->template_load("main/reviews.php"); ?>
|
|
<?php $this->template_load("main/text.php"); ?>
|
|
<?php $this->template_load("main/faq.php"); ?>
|
|
</main>
|
|
|
|
<?php $this->template_load("footer.php"); ?>
|