bigly-chat/docs/index.php

26 lines
809 B
PHP
Raw Normal View History

2024-11-26 11:38:28 -05:00
<?php
2025-01-07 15:19:55 -05:00
require(__DIR__ . "/../libs/page.php");
require(__DIR__ . "/../libs/form.php");
require(__DIR__ . "/../libs/comment.php");
2024-12-06 08:26:03 -05:00
2024-11-27 00:13:33 -05:00
page_header();
2024-11-30 04:48:58 -05:00
?>
2025-01-22 06:11:16 -05:00
<?php if (!($_GET['page'] > 0)) { ?>
<div class="banner"><img class="banner-background" src="/img/newlogo.svg">
<div class="banner-content">
2025-01-21 18:47:51 -05:00
<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>
2025-02-03 08:08:11 -05:00
<a class="form-button" href="/stats.php?ref=<?php echo $username ?>">Suggested Users</a>
2025-01-23 20:00:36 -05:00
<a class="form-button" href="/stats.php">Top Users</a>
2025-01-21 18:47:51 -05:00
<a class="form-button" href="https://dervland.net/">More Projects</a>
2025-01-22 06:11:16 -05:00
</div>
</div>
2024-12-06 08:26:03 -05:00
<?php
2025-01-21 18:47:51 -05:00
}
2024-12-06 08:26:03 -05:00
comments("root","root");
page_footer();
2024-12-02 23:02:11 -05:00
?>