-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
33 lines (28 loc) · 857 Bytes
/
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
<?php @session_start();
get_includes('head');
get_includes('header');
get_includes('nav');
get_includes('banner');
?>
<?php if ( is_front_page() ) { get_includes('middle'); }?>
<!-- Main -->
<div id="main_area">
<div class="wrapper">
<div class="main_con">
<main>
<?php if(!is_front_page()) { ?>
<?php if ( function_exists('yoast_breadcrumb') ) {
yoast_breadcrumb( '<p id="breadcrumbs">','</p>' );
}
?>
<?php }?>
<?php get_template_part( 'loop', 'page' ); ?>
</main>
<figure class="main_humans hidden"><img src="<?php bloginfo('template_url');?>/images/main-humans.png" alt="workers smiling"></figure>
</div>
<div class="clearfix"></div>
</div>
</div>
<!-- End Main -->
<?php if ( is_front_page() ) { get_includes('bottom'); }?>
<?php get_includes('footer'); ?>