bigly-chat/docs/index.php

32 lines
1.2 KiB
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();
2025-02-03 16:25:31 -05:00
if (!is_null($username)) {
//comments("root","root");
}
if (!($_GET['page'] > 0)) { ?>
2025-01-22 06:11:16 -05:00
<div class="banner"><img class="banner-background" src="/img/newlogo.svg">
<div class="banner-content">
2025-02-04 01:24:18 -05:00
<h1>BiglyChat</h1>
<pre>BiglyChat innovates upon social media, with developers that actually care about their community.</pre>
2025-02-03 16:25:31 -05:00
<pre>This spans a <a class='link' href='/stats.php'>custom algorithm</a>, <a class='link' href='https://gw.dervland.net/'>cool web games</a>, and much more.</pre>
2025-02-03 16:26:26 -05:00
<pre>Anyone can <a class='link' href='/register.php'>join our community</a> and become part of BiglyChat's evolution!</pre>
2025-01-21 18:47:51 -05:00
<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
}
2025-02-03 16:25:31 -05:00
//if (is_null($username)) {
comments("root","root");
//}
2024-12-06 08:26:03 -05:00
page_footer();
2024-12-02 23:02:11 -05:00
?>