litebans-php/index.php
ruan 5660317403 Updates
- Remove namespaces for PHP 5.2 support

- Rename "includes" to "inc"

- Add database error handling and error pages
2016-01-09 21:24:18 +02:00

15 lines
417 B
PHP

<?php
require_once './inc/page.php';
$page = new Page("index");
$page->print_title();
?>
<div class="container">
<div class="jumbotron">
<div style="text-align: center;"><h2>Welcome to <?php echo $page->settings->name; ?>'s Ban List.</h2></div>
<div style="text-align: center;"><p>Here is where all of our punishments are listed.</p></div>
</div>
</div>
<?php $page->print_footer(false); ?>