mirror of
https://gitlab.com/ruany/litebans-php.git
synced 2025-05-23 16:32:45 +00:00
18 lines
464 B
PHP
18 lines
464 B
PHP
<?php
|
|
require_once './inc/page.php';
|
|
|
|
$page = new Page("index");
|
|
$page->print_title();
|
|
?>
|
|
<br>
|
|
<div class="container">
|
|
<div class="jumbotron">
|
|
<div class="litebans-index">
|
|
<h2><?php echo str_replace("{server}", $page->settings->name, $page->t("index.welcome.main")); ?></h2>
|
|
</div>
|
|
|
|
<div class="litebans-index"><p><?php echo $page->t("index.welcome.sub"); ?></p></div>
|
|
</div>
|
|
</div>
|
|
<?php $page->print_footer(false); ?>
|