-
Notifications
You must be signed in to change notification settings - Fork 1
/
page.php
58 lines (44 loc) · 1.63 KB
/
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
58
<?php
/* ------------------------------------------------------------------------- *
* Page template
/* ------------------------------------------------------------------------- */
/**
* Filtered CSS classes
* ------
* section: grid-wrap
* div: grid-container grid-1 padding-small clearfix
* main: grid-col grid-posts-col site-page clearfix
* ------
*/
// Header and Footer templates
$businessx_header_tmpl = apply_filters( 'businessx_header___tmpl', '' );
$businessx_footer_tmpl = apply_filters( 'businessx_footer___tmpl', '' );
// Header
get_header( $businessx_header_tmpl );
// Title
businessx_get_heading_templ( 'page', 'full-width' );
?>
<section role="main" id="content" class="<?php businessx_occ( 'businessx_page___section_classes' ); ?>">
<?php do_action( 'businessx_page__inner_sec_top' ); ?>
<div class="<?php businessx_occ( 'businessx_page___container_classes' ); ?>">
<?php do_action( 'businessx_page__inner_before' ); ?>
<main id="main" class="<?php businessx_occ( 'businessx_page___main_classes' ); ?>" role="main">
<?php
while ( have_posts() ) : the_post();
// Page template
get_template_part( 'partials/posts/content', 'page' );
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile;
?>
</main>
<?php get_sidebar( apply_filters( 'businessx_sidebar___page', 'page' ) ); ?>
<?php do_action( 'businessx_page__inner_after' ); ?>
</div>
<?php do_action( 'businessx_page__inner_sec_bottom' ); ?>
</section>
<?php
// Footer
get_footer( $businessx_footer_tmpl ); ?>