mirror of
https://gitlab.com/ruany/litebans-php.git
synced 2025-05-23 08:29:06 +00:00

- 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
17 lines
443 B
PHP
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); ?>
|