-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfront-page.php
27 lines (24 loc) · 968 Bytes
/
front-page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php get_header(); ?>
<?php get_template_part("content", "menu"); ?>
<div class="container-fluid">
<?php get_template_part("content", "banners"); ?>
<?php get_template_part("content", "reservation"); ?>
<?php get_template_part("content", "home"); ?>
<div class="container">
<?php
$title = t("antours", "Package Title", "Package Title");
$content = t("antours", "Package Content", "Package Content");
if ($title && $content) {
?>
<div class="row margin-v-separator">
<?php
renderTitle($title, $content, array("normal-title", "openSans", "fontLight"));
?>
</div>
<?php
}
?>
</div>
<?php get_template_part("content", "features"); ?>
</div>
<?php get_footer(); ?>