bigly-chat/views/main.ejs

25 lines
1.1 KiB
Text
Raw Normal View History

2024-09-18 18:47:09 -04:00
<%- include('header.ejs') -%>
2024-10-19 21:28:52 -04:00
<div class='banner'><img class='banner-background' src='/static/img/bg.svg'>
<div class='banner-content'>
<h1>BiglyChat</h1>
<p>Broadcast videos to your fanbase and be part of the community alongside the owners. No more black box
moderation!</p>
<details>
2024-10-21 23:14:46 -04:00
<summary><b>Terms of Use</b></summary>
2024-10-19 21:28:52 -04:00
<%- include ('guidelines.ejs') -%>
</details>
<h2>Uploading content</h2>
<%if (username=='!nobody' ) { %>
<a class='form-button' href="/client/register">Join the Community</a>
<% } %>
<a class='form-button' href="https://discord.gg/wZ3mg58JMT">Discord Chat</a>
<a class='form-button' href="https://git.xuyezo.net/Zuxxied/bigly-chat">Source Code</a>
</div>
2024-09-18 18:47:09 -04:00
</div>
2024-10-19 21:28:52 -04:00
<div class='content'>
2024-09-19 05:58:01 -04:00
<h1>Recent Videos</h1>
<div class=' videos'>
<%- include('videos.ejs') -%>
</div>
</div>
2024-09-18 18:47:09 -04:00
<%- include('footer.ejs') -%>