litebans-php/index.php
ruan 162d0ede65 Updates
- Updated jQuery to v2.1.4,  include original unformatted versions

- Added punishment totals to the header (bans, mutes, warnings, kicks) as badges

- Refactored and cleaned up a few classes
2015-10-09 04:27:07 +02:00

17 lines
443 B
PHP

<?php
namespace litebans;
require_once './includes/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); ?>