-
Notifications
You must be signed in to change notification settings - Fork 0
/
front-page.php
57 lines (31 loc) · 1.28 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php get_template_part('/partials/head', 'head') ?>
<body>
<!--main content wrapper start-->
<div class="main-wrapper">
<?php get_header() ?>
<!--hero section start-->
<?php get_template_part('partials/home/hero-section', 'hero-section') ?>
<!--hero section end-->
<!--faq section start-->
<?php get_template_part('partials/home/faq', 'faq') ?>
<!--faq section end-->
<!--feature promo section start-->
<?php get_template_part('partials/home/feature', 'feature') ?>
<!--feature promo section end-->
<!--why-choose us section start-->
<?php get_template_part('partials/home/why-choose', 'why-choose') ?>
<!--why choose us section end-->
<!--image-feature section start-->
<?php get_template_part('partials/home/image-feature', 'image-feature') ?>
<!--image feature section end-->
<!--pricing section start-->
<?php get_template_part('partials/home/pricing', 'pricing') ?>
<!--pricing section end-->
<!--related blog start-->
<?php get_template_part('partials/home/blog-card', 'blog-card') ?>
<!--related blog end-->
<?php get_footer() ?>
</div>
<!--main content wrapper end-->
</body>
</html>