This commit is contained in:
/jedi/ 2018-12-27 21:56:30 +01:00
parent 968f1f46a1
commit 7093e6cba9
9 changed files with 25 additions and 36 deletions

View file

@ -100,16 +100,29 @@
<?php
include "templates/sidebar.php";
?>
<?php
if(file_exists("templates/".$page.".php"))
include "templates/".$page.".php";
else
include "templates/404.php"
?>
<div id="content-wrapper">
<?php
if(file_exists("templates/".$page.".php"))
include "templates/".$page.".php";
else
include "templates/404.php"
?>
<!-- Sticky Footer -->
<footer class="sticky-footer">
<div class="container my-auto">
<div class="copyright text-center my-auto">
<span>C3CLOC | production | githash: <?php echo $hash; ?></span>
</div>
</div>
</footer>
</div>
<!-- /.content-wrapper -->
</div>