bludit/bl-themes/alternative/index.php

36 lines
523 B
PHP
Raw Normal View History

<!DOCTYPE html>
2018-01-28 00:55:19 +01:00
<html>
<head>
2018-01-28 00:55:19 +01:00
<?php
include(THEME_DIR_PHP.'head.php');
?>
</head>
<body id="page-top">
2018-01-27 20:34:26 +01:00
<!-- Navbar -->
<?php
include(THEME_DIR_PHP.'navbar.php');
?>
<!-- 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 -->
<?php
include(THEME_DIR_PHP.'footer.php');
?>
2018-01-28 00:55:19 +01:00
<!-- Load Javascript -->
<?php
echo Theme::js('js/jquery.min.js');
echo Theme::js('js/bootstrap.min.js');
?>
2018-01-28 00:55:19 +01:00
</body>
</html>