bigly-chat/docs/index.php
2025-02-23 01:52:53 -05:00

20 lines
624 B
PHP

<?php
require(__DIR__ . "/../libs/page.php");
require(__DIR__ . "/../libs/form.php");
require(__DIR__ . "/../libs/comment.php");
page_header();
if (!($_GET['page'] > 0) && is_null($username)) { ?>
<div class="banner"><img class="banner-background" src="/img/newlogo.svg">
<div class="banner-content">
<h1>BiglyChat</h1>
<pre>BiglyChat is a social environment for the cool creative projects on Dervland.</pre>
<a class="form-button" href="/tou.php">Terms of Use</a>
<a class="form-button" href="https://dervland.net/">Dervland</a>
</div>
</div>
<?php
}
comments("root", "root");
page_footer();
?>