koblog/bl-themes/popeye/index.php
2023-07-15 15:59:51 +02:00

87 lines
2.2 KiB
PHP
Executable file

<!DOCTYPE html>
<html lang="<?php echo Theme::lang() ?>">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="generator" content="Bludit">
<!-- Generate <title>...</title> -->
<?php echo Theme::metaTagTitle(); ?>
<!-- Generate <meta name="description" content="..."> -->
<?php echo Theme::metaTagDescription(); ?>
<!-- Generate <link rel="icon" href="..."> -->
<?php echo Theme::favicon('img/favicon.png'); ?>
<!-- Include CSS Bootstrap file from Bludit Core -->
<?php echo Theme::cssBootstrap(); ?>
<!-- Include CSS Bootstrap ICONS file from Bludit Core -->
<?php echo Theme::cssBootstrapIcons(); ?>
<!-- Include CSS Styles -->
<?php
echo Theme::css(array(
'css/01-style.css',
'css/02-helpers.css'
));
# Apply the following CSS only for Dark Mode
if ($themePlugin->darkMode()) {
echo Theme::css(
'css/99-darkmode.css'
);
}
?>
<?php if ($themePlugin->googleFonts()) : ?>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:sans,bold">
<style>
body {
font-family: "Open Sans", sans-serif;
}
</style>
<?php endif; ?>
<!-- Execute Bludit plugins for the hook "Site head" -->
<?php Theme::plugins('siteHead'); ?>
</head>
<body>
<!-- Execute Bludit plugins for the hook "Site body begin" -->
<?php Theme::plugins('siteBodyBegin'); ?>
<!-- Navbar -->
<?php include(THEME_DIR_PHP . 'navbar.php'); ?>
<!-- Content -->
<?php
// $WHERE_AM_I variable provides 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 the user is watching a particular category the variable takes the value "category"
if ($WHERE_AM_I == 'page') {
include(THEME_DIR_PHP . 'page.php');
} else {
include(THEME_DIR_PHP . 'home.php');
}
?>
<!-- Footer -->
<?php include(THEME_DIR_PHP . 'footer.php'); ?>
<!-- Include Jquery file from Bludit Core -->
<?php echo Theme::jquery(); ?>
<!-- Include javascript Bootstrap file from Bludit Core -->
<?php echo Theme::jsBootstrap(); ?>
<!-- Execute Bludit plugins for the hook "Site body end" -->
<?php Theme::plugins('siteBodyEnd'); ?>
</body>
</html>