43 lines
No EOL
1 KiB
PHP
Executable file
43 lines
No EOL
1 KiB
PHP
Executable file
<!DOCTYPE html>
|
|
<html lang="<?php echo Theme::lang() ?>">
|
|
<head>
|
|
<?php include(THEME_DIR_PHP.'head.php'); ?>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Load Koblog Plugins: Site Body Begin -->
|
|
<?php Theme::plugins('siteBodyBegin'); ?>
|
|
|
|
<!-- Navbar -->
|
|
<?php include(THEME_DIR_PHP.'header.php'); ?>
|
|
|
|
<!-- Content -->
|
|
<main class="container">
|
|
<?php
|
|
// Koblog content are pages
|
|
// But if you order the content by date
|
|
// These pages works as posts
|
|
|
|
// $WHERE_AM_I variable detect where the user is browsing
|
|
// If the user is watching a particular page/post the variable takes the value "page"
|
|
// If the user is watching the frontpage the variable takes the value "home"
|
|
if ($WHERE_AM_I == 'page') {
|
|
include(THEME_DIR_PHP.'page.php');
|
|
} else {
|
|
include(THEME_DIR_PHP.'home.php');
|
|
}
|
|
?>
|
|
</main>
|
|
|
|
<aside>
|
|
<?php include(THEME_DIR_PHP.'sidebar.php'); ?>
|
|
</aside>
|
|
|
|
<!-- Footer -->
|
|
<?php include(THEME_DIR_PHP.'footer.php'); ?>
|
|
|
|
<!-- Load Koblog Plugins: Site Body End -->
|
|
<?php Theme::plugins('siteBodyEnd'); ?>
|
|
|
|
</body>
|
|
</html>
|