-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·38 lines (22 loc) · 1.03 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
<?php
/**
* Template Name: Home
*/
get_header();
?>
<?php get_template_part( 'template-parts/hero', 'section' ); ?>
</header>
<!-- Header Area wrapper End -->
<?php get_template_part( 'template-parts/features', 'section' ); ?>
<?php get_template_part( 'template-parts/services', 'section' ); ?>
<?php get_template_part( 'template-parts/video', 'section' ); ?>
<?php get_template_part( 'template-parts/team', 'section' ); ?>
<?php get_template_part( 'template-parts/counters', 'section' ); ?>
<?php get_template_part( 'template-parts/pricing', 'section' ); ?>
<?php get_template_part('template-parts/skills','section') ;?>
<?php get_template_part('template-parts/portfolio','section') ;?>
<?php get_template_part('template-parts/testimonial','section') ;?>
<?php get_template_part('template-parts/blog','section') ;?>
<?php get_template_part('template-parts/clients','section') ;?>
<?php get_template_part('template-parts/contact','section') ;?>
<?php get_footer(); ?>