2018-01-25 23:58:42 +01:00
|
|
|
<!DOCTYPE html>
|
2018-01-28 00:55:19 +01:00
|
|
|
<html>
|
2018-01-25 23:58:42 +01:00
|
|
|
<head>
|
2018-01-28 23:33:50 +01:00
|
|
|
<?php include(THEME_DIR_PHP.'head.php'); ?>
|
2018-01-25 23:58:42 +01:00
|
|
|
</head>
|
|
|
|
<body id="page-top">
|
|
|
|
|
2018-01-28 23:33:50 +01:00
|
|
|
<!-- Load Bludit Plugins: Site Body Begin -->
|
|
|
|
<?php Theme::plugins('siteBodyBegin'); ?>
|
|
|
|
|
2018-01-27 20:34:26 +01:00
|
|
|
<!-- Navbar -->
|
2018-01-28 23:33:50 +01:00
|
|
|
<?php include(THEME_DIR_PHP.'navbar.php'); ?>
|
2018-01-25 23:58:42 +01:00
|
|
|
|
|
|
|
<!-- Content -->
|
|
|
|
<?php
|
|
|
|
if ($WHERE_AM_I=='page') {
|
|
|
|
include(THEME_DIR_PHP.'page.php');
|
|
|
|
} else {
|
|
|
|
include(THEME_DIR_PHP.'home.php');
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
2018-01-28 00:55:19 +01:00
|
|
|
<!-- Footer -->
|
2018-01-28 23:33:50 +01:00
|
|
|
<?php include(THEME_DIR_PHP.'footer.php'); ?>
|
2018-01-25 23:58:42 +01:00
|
|
|
|
2018-01-28 23:33:50 +01:00
|
|
|
<!-- Javascript -->
|
2018-01-28 00:55:19 +01:00
|
|
|
<?php
|
|
|
|
echo Theme::js('js/jquery.min.js');
|
|
|
|
echo Theme::js('js/bootstrap.min.js');
|
|
|
|
?>
|
2018-01-25 23:58:42 +01:00
|
|
|
|
2018-01-28 23:33:50 +01:00
|
|
|
<!-- Load Bludit Plugins: Site Body End -->
|
|
|
|
<?php Theme::plugins('siteBodyEnd'); ?>
|
|
|
|
|
2018-01-28 00:55:19 +01:00
|
|
|
</body>
|
|
|
|
</html>
|