51 lines
982 B
PHP
51 lines
982 B
PHP
|
<!doctype html>
|
||
|
<html lang="<?php echo $Site->language() ?>">
|
||
|
<head>
|
||
|
|
||
|
<!-- Meta tags -->
|
||
|
<?php include('php/head.php') ?>
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<!-- Plugins -->
|
||
|
<?php Theme::plugins('onSiteBody') ?>
|
||
|
|
||
|
<!-- Layout -->
|
||
|
<div id="layout" class="pure-g">
|
||
|
|
||
|
<!-- Sidebar -->
|
||
|
<div class="sidebar pure-u-1 pure-u-md-1-4">
|
||
|
<?php include('php/sidebar.php') ?>
|
||
|
</div>
|
||
|
|
||
|
<!-- Main -->
|
||
|
<div class="content pure-u-1 pure-u-md-3-4">
|
||
|
|
||
|
<!-- Content -->
|
||
|
<?php
|
||
|
if($Url->whereAmI()=='home')
|
||
|
{
|
||
|
include('php/home.php');
|
||
|
}
|
||
|
elseif($Url->whereAmI()=='post')
|
||
|
{
|
||
|
include('php/post.php');
|
||
|
}
|
||
|
elseif($Url->whereAmI()=='page')
|
||
|
{
|
||
|
include('php/page.php');
|
||
|
}
|
||
|
?>
|
||
|
|
||
|
<!-- Footer -->
|
||
|
<div class="footer">
|
||
|
<p><?php echo $Site->footer(); ?></p>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|