Pequenio/index.php

58 lines
1.4 KiB
PHP
Executable File

<!DOCTYPE html>
<html lang="<?php echo Theme::lang() ?>">
<head>
<?php include(THEME_DIR_PHP.'head.php') ?>
</head>
<body>
<div id="fh5co-main">
<div id="fh5co-content">
<div class="container">
<div class="row">
<div class="col-lg-8 offset-lg-2">
<div class="row">
<div class="col-lg-3">
<?php include(THEME_DIR_PHP.'sidebar.php') ?>
</div>
<div class="col-lg-9">
<?php
if ( $WHERE_AM_I === 'home' ) {
include(THEME_DIR_PHP.'home.php');
} elseif ( $WHERE_AM_I === 'page' ) {
include(THEME_DIR_PHP.'page.php');
}
?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer id="fh5co-footer">
<div class="container">
<div class="row">
<div class="col-lg-10 offset-lg-1 text-center">
<p>
<?php echo $site->footer() ?>
<br>
Powered by <a href="https://www.bludit.com" target="_blank">BLUDIT</a>
<?php
if (pluginActivated('pluginRSS')) {
echo ' - <a href="'.Theme::rssUrl().'" target="_blank">RSS</a>';
}
if (pluginActivated('pluginSitemap')) {
echo ' - <a href="'.Theme::sitemapUrl().'" target="_blank">Sitemap</a>';
}
?>
</p>
</div>
</div>
</div>
</footer>
</body>
</html>