bludit/bl-themes/alternative/index.php

42 lines
1007 B
PHP
Raw Normal View History

<!DOCTYPE html>
2018-11-09 00:59:06 +01:00
<html lang="<?php echo Theme::lang() ?>">
<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
// Include Jquery file from Bludit Core
echo Theme::jquery();
// Include javascript Bootstrap file from Bludit Core
echo Theme::jsBootstrap();
2018-01-28 00:55:19 +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>
2018-11-09 00:59:06 +01:00
</html>