23 lines
655 B
PHP
Executable file
23 lines
655 B
PHP
Executable file
<?php
|
|
require(__DIR__ . "/../libs/page.php");
|
|
require(__DIR__ . "/../libs/form.php");
|
|
require(__DIR__ . "/../libs/comment.php");
|
|
|
|
page_header();
|
|
?>
|
|
<?php if (!($_GET['page'] > 0)) { ?>
|
|
<div class="banner"><img class="banner-background" src="/img/newlogo.svg">
|
|
<div class="banner-content">
|
|
<h1>BiglyChat</h1>
|
|
<pre>BiglyChat is a niche forum for Dervland experiments and games.</pre>
|
|
<h2>Community</h2>
|
|
|
|
<a class="form-button" href="/tou.php">Terms of Use</a>
|
|
<a class="form-button" href="https://dervland.net/">More Projects</a>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
comments("root","root");
|
|
page_footer();
|
|
?>
|