22 lines
No EOL
933 B
Text
22 lines
No EOL
933 B
Text
<%- include('header.ejs') -%>
|
|
<div class='area'>
|
|
<h1>BiglyChat</h1>
|
|
<p>Broadcast videos to your fanbase, while you and the owners feel part of the community. No more black box moderation.</p>
|
|
<details>
|
|
<summary><b>Guidelines</b></summary>
|
|
<%- include ('guidelines.ejs') -%>
|
|
</details>
|
|
<h2>Signing up to upload content</h2>
|
|
<%if (username=='!nobody' ) { %>
|
|
<div class="button"><a href="/client/register">Create</a></div>
|
|
<% } %>
|
|
<div class="button"><a href="https://discord.gg/wZ3mg58JMT">Discord Chat</a></div>
|
|
<div class="button"><a href="https://git.xuyezo.net/Zuxxied/bigly-chat">Source Code</a></div>
|
|
</div>
|
|
<div class='area'>
|
|
<h1>Recent Videos</h1>
|
|
<div class=' videos'>
|
|
<%- include('videos.ejs') -%>
|
|
</div>
|
|
</div>
|
|
<%- include('footer.ejs') -%> |