bigly-chat/views/main.ejs

25 lines
1.1 KiB
Text
Raw Normal View History

2024-11-25 14:12:43 -05:00
<%- include('header.ejs') -%>
2024-11-25 14:12:44 -05: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>
<summary><b>Guidelines</b></summary>
<%- 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-11-25 14:12:43 -05:00
</div>
2024-11-25 14:12:44 -05:00
<div class='content'>
2024-11-25 14:12:43 -05:00
<h1>Recent Videos</h1>
<div class=' videos'>
<%- include('videos.ejs') -%>
</div>
</div>
2024-11-25 14:12:43 -05:00
<%- include('footer.ejs') -%>