-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
35 lines (32 loc) · 823 Bytes
/
index.php
File metadata and controls
35 lines (32 loc) · 823 Bytes
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
<?php
namespace KVSun;
require_once __DIR__ . DIRECTORY_SEPARATOR . 'autoloader.php';
begin_file(__FILE__);
if (DEBUG_MODE) {
$timer = new \shgysk8zer0\Core\Timer();
}
get_header();
if (!is_user_logged_in()) {
require_once __DIR__ . DIRECTORY_SEPARATOR . 'pass.html';
}
?>
<!--#blocks-wrapper-->
<div class="blocks-wrapper clearfix">
<!--#blocks-left-or-right-->
<div class="blocks-left eleven columns clearfix">
<div class="news-box">
<?php
get_template_part( 'includes/blog', 'kvlife' );
dynamic_sidebar('Magazine Style Widgets)');
?>
</div>
<!-- /blocks col -->
<?php
get_sidebar();
get_footer();
end_file(__FILE__);
if (DEBUG_MODE) {
\shgysk8zer0\Core\Console::getInstance()->log("Loaded in {$timer} ms.");
\shgysk8zer0\Core\Console::getInstance()->sendLogHeader();
}
?>