bludit/bl-themes/alternative/index.php

40 lines
886 B
PHP
Raw Normal View History

<!DOCTYPE html>
2018-01-28 00:55:19 +01:00
<html>
<head>
2018-01-28 23:33:50 +01:00
<?php include(THEME_DIR_PHP.'head.php'); ?>
</head>
2018-02-01 00:34:16 +01:00
<body>
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'); ?>
<!-- Content -->
<?php
2018-02-01 00:34:16 +01:00
// $WHERE_AM_I variable detect where the user is browsing
// If the user is watching a particular page 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');
}
?>
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-28 23:33:50 +01:00
<!-- Javascript -->
2018-01-28 00:55:19 +01:00
<?php
echo Theme::jquery();
2018-01-28 00:55:19 +01:00
echo Theme::js('js/bootstrap.min.js');
?>
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>