bigly-chat/docs/index.php

24 lines
718 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
?>
<div class="banner"><img class="banner-background" src="/img/newlogo.svg">
<div class="banner-content">
<h1>BiglyChat</h1>
2024-11-30 04:52:01 -05:00
<pre>BiglyChat is a niche community for weird Dervland experiments and games.</pre>
2024-11-30 04:48:58 -05:00
<h2>Community</h2>
<a class="form-button" href="/register.php">Join the Community</a>
<a class="form-button" href="/tou.php">Terms of Use</a>
<a class="form-button" href="https://dervland.net/">More Projects</a>
</div>
</div>
2024-12-06 08:26:03 -05:00
<?php
comments("root","root");
page_footer();
2024-12-02 23:02:11 -05:00
?>