bigly-chat/views/main.ejs

22 lines
872 B
Text
Raw Normal View History

2024-11-25 14:12:43 -05:00
<%- include('header.ejs') -%>
<div class='area'>
2024-11-25 14:12:43 -05:00
<h1>BiglyChat</h1>
2024-11-25 14:12:43 -05:00
<p>Express your niche... build a video community... and more!</p>
2024-11-25 14:12:43 -05:00
<details>
<summary><b>Guidelines</b></summary>
<%- include ('guidelines.ejs') -%>
</details>
2024-11-25 14:12:43 -05:00
<h2>Signing up to upload content</h2>
2024-11-25 14:12:43 -05:00
<%if (username=='!nobody' ) { %>
2024-11-25 14:12:43 -05:00
<div class="button"><a href="/client/register">Create</a></div>
2024-11-25 14:12:43 -05:00
<% } %>
2024-11-25 14:12:43 -05:00
<div class="button"><a href="https://discord.gg/7JJBYySY">Discord Chat</a></div>
2024-11-25 14:12:43 -05:00
<div class="button"><a href="https://codeberg.org/onezDerv/bigly-chat">Source Code</a></div>
2024-11-25 14:12:43 -05:00
</div>
2024-11-25 14:12:43 -05:00
<div class='area'>
<h1>Recent Videos</h1>
<div class=' videos'>
<%- include('videos.ejs') -%>
</div>
</div>
2024-11-25 14:12:43 -05:00
<%- include('footer.ejs') -%>