-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpage.php
More file actions
48 lines (47 loc) · 1.32 KB
/
page.php
File metadata and controls
48 lines (47 loc) · 1.32 KB
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
<?php
namespace KVSun;
require_once __DIR__ . DIRECTORY_SEPARATOR . 'autoloader.php';
begin_file(__FILE__);
if (DEBUG_MODE) {
$timer = new \shgysk8zer0\Core\Timer();
}
get_header();
?>
<!-- #blocks-wrapper-->
<div id="blocks-wrapper" class="clearfix">
<?php
if (have_posts()) : while (have_posts()) : the_post(); ?>
<!-- /blocks Left-->
<div id="blocks-left" class="eleven columns post-649 page type-page status-publish hentry pmpro-has-access <?php if(is_page('calendar')){ echo 'column-left'; }?>">
<!-- .post-content-->
<div class="post-content">
<!--/.post-outer -->
<div class="post-outer clearfix">
<!--.post-title-->
<div class="post-title"><h1 class="entry-title"><?php the_title(); ?></h1></div>
<!--/.post-title-->
<!-- .post_content -->
<div class = 'post_content entry-content'>
<?php the_content(); ?>
<div class="clear"></div>
</div>
<!-- /.post_content -->
<?php wp_link_pages(); ?>
<div class='clear'></div>
</div>
<!--/.post-outer -->
</div>
<!-- post-content-->
<?php endwhile; endif; ?>
</div>
<!-- /blocks Left -or -right -->
<?php
get_sidebar();
get_footer();
end_file(__FILE__);
if (DEBUG_MODE) {
$console = \shgysk8zer0\Core\Console::getInstance();
$console->log("Loaded in {$timer} seconds.");
$console->sendLogHeader();
}
?>