koblog/bl-themes/alternative/index.php

59 lines
1.6 KiB
PHP
Raw Normal View History

<!DOCTYPE html>
2021-03-19 20:48:04 +01:00
<html lang="<?php echo HTML::lang() ?>">
<head>
2019-06-02 20:10:55 +02:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="generator" content="Bludit">
<!-- Dynamic title tag -->
2021-03-19 20:48:04 +01:00
<?php echo HTML::metaTagTitle(); ?>
2019-06-02 20:10:55 +02:00
<!-- Dynamic description tag -->
2021-03-19 20:48:04 +01:00
<?php echo HTML::metaTagDescription(); ?>
2019-06-02 20:10:55 +02:00
<!-- Include Favicon -->
2021-03-19 20:48:04 +01:00
<?php echo HTML::favicon('img/favicon.png'); ?>
2019-06-02 20:10:55 +02:00
<!-- Include CSS Bootstrap file from Bludit Core -->
2021-03-19 20:48:04 +01:00
<?php echo HTML::cssBootstrap(); ?>
2019-06-02 20:10:55 +02:00
<!-- Include CSS Styles from this theme -->
2021-03-19 20:48:04 +01:00
<?php echo HTML::css('css/style.css'); ?>
2019-06-02 20:10:55 +02:00
<!-- Load Bludit Plugins: Site head -->
2021-03-19 20:48:04 +01:00
<?php execPluginsByHook('siteHead'); ?>
</head>
2018-02-01 00:34:16 +01:00
<body>
2018-01-28 23:33:50 +01:00
<!-- Load Bludit Plugins: Site Body Begin -->
2021-03-19 20:48:04 +01:00
<?php execPluginsByHook('siteBodyBegin'); ?>
2018-01-28 23:33:50 +01:00
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'); ?>
2019-06-02 20:10:55 +02:00
<!-- Include Jquery file from Bludit Core -->
2021-03-19 20:48:04 +01:00
<?php echo HTML::jquery(); ?>
2019-06-02 20:10:55 +02:00
<!-- Include javascript Bootstrap file from Bludit Core -->
2021-03-19 20:48:04 +01:00
<?php echo HTML::jsBootstrap(); ?>
2018-01-28 23:33:50 +01:00
<!-- Load Bludit Plugins: Site Body End -->
2021-03-19 20:48:04 +01:00
<?php execPluginsByHook('siteBodyEnd'); ?>
2018-01-28 23:33:50 +01:00
2018-01-28 00:55:19 +01:00
</body>
2018-11-09 00:59:06 +01:00
</html>