-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
53 lines (41 loc) · 1.17 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
<?php
/*
Template Name: Default (no side bar)
*/
?>
<?php get_header(); ?>
<?php the_post(); ?>
<?php blade_grve_print_header_title( 'page' ); ?>
<?php blade_grve_print_header_breadcrumbs( 'page' ); ?>
<?php blade_grve_print_anchor_menu( 'page' ); ?>
<?php
if ( 'yes' == blade_grve_post_meta( 'grve_disable_content' ) ) {
get_footer();
} else {
?>
<!-- CONTENT -->
<div id="grve-content" class="clearfix <?php echo blade_grve_sidebar_class( 'page' ); ?>">
<div class="grve-content-wrapper">
<!-- MAIN CONTENT -->
<div id="grve-main-content">
<div class="grve-main-content-wrapper clearfix">
<!-- PAGE CONTENT -->
<div id="page-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php the_content(); ?>
</div>
<!-- END PAGE CONTENT -->
<?php if ( blade_grve_visibility( 'page_comments_visibility' ) ) { ?>
<?php comments_template(); ?>
<?php } ?>
</div>
</div>
<!-- END MAIN CONTENT -->
<?php blade_grve_set_current_view( 'page' ); ?>
<?php get_sidebar(); ?>
</div>
</div>
<!-- END CONTENT -->
<?php get_footer(); ?>
<?php
}
//Omit closing PHP tag to avoid accidental whitespace output errors.