Pequenio/index.php

58 lines
1.4 KiB
PHP
Raw Normal View History

2017-11-08 23:12:58 +01:00
<!DOCTYPE html>
2018-11-12 00:05:04 +01:00
<html lang="<?php echo Theme::lang() ?>">
2017-11-08 23:12:58 +01:00
<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">
2017-11-08 23:12:58 +01:00
<div class="row">
<div class="col-lg-3">
2017-11-08 23:12:58 +01:00
<?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');
}
?>
2017-11-08 23:12:58 +01:00
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer id="fh5co-footer">
<div class="container">
<div class="row">
2020-07-17 19:28:36 +02:00
<div class="col-lg-10 offset-lg-1 text-center">
2017-11-08 23:12:58 +01:00
<p>
2018-09-08 18:26:20 +02:00
<?php echo $site->footer() ?>
2017-11-08 23:12:58 +01:00
<br>
Powered by <a href="https://www.bludit.com" target="_blank">BLUDIT</a>
<?php
2018-09-08 18:26:20 +02:00
if (pluginActivated('pluginRSS')) {
2017-11-08 23:12:58 +01:00
echo ' - <a href="'.Theme::rssUrl().'" target="_blank">RSS</a>';
}
2018-09-08 18:26:20 +02:00
if (pluginActivated('pluginSitemap')) {
2017-11-08 23:12:58 +01:00
echo ' - <a href="'.Theme::sitemapUrl().'" target="_blank">Sitemap</a>';
}
?>
</p>
</div>
</div>
</div>
</footer>
</body>
2020-07-17 19:28:36 +02:00
</html>