-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
41 lines (37 loc) · 1.37 KB
/
index.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
<?php
/*
Template Name: Homepage
*/
if(is_front_page()){
get_header();
}else{
get_header('blog');
}
?>
<!-- Hero Section -->
<?php get_template_part('template-parts/section', 'hero') ?>
<!-- Features Section -->
<?php get_template_part('template-parts/section', 'features') ?>
<!-- Services Section -->
<?php get_template_part('template-parts/section', 'services') ?>
<!-- Video Section -->
<?php get_template_part('template-parts/section', 'video') ?>
<!-- Team Section -->
<?php get_template_part('template-parts/section', 'team') ?>
<!-- Counter Section -->
<?php get_template_part('template-parts/section', 'counter') ?>
<!-- Pricing Section -->
<?php get_template_part('template-parts/section', 'pricing') ?>
<!-- Skills Section -->
<?php get_template_part('template-parts/section', 'skills') ?>
<!-- Portfolio Section -->
<?php get_template_part('template-parts/section', 'portfolio') ?>
<!-- Testimonial Section -->
<?php get_template_part('template-parts/section', 'testimonials') ?>
<!-- Blog Section -->
<?php get_template_part('template-parts/section', 'blog') ?>
<!-- Client Section -->
<?php get_template_part('template-parts/section', 'clients') ?>
<!-- Contact Section -->
<?php get_template_part('template-parts/section', 'contact') ?>
<?php get_footer(); ?>