bigly-chat/views/main.ejs

29 lines
1.2 KiB
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><i>Collab on videos... make creative animations... and more!</i></p>
<details>
<summary><b>About</b></summary>
<p><i>I am <a href='https://zenoverse.net/'>Onez</a>, a self-taught developer from a young age. Following
the
unexpected growth
of <i>Video Bot Thing</i>, I made this as a home for the video editing community. View the <a
href='https://codeberg.org/onezDerv/bigly-chat'>source</a> if you want to contribute or make a
fork.</i></p>
</details>
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
<%if (username=='!nobody' ) { %>
<div class="button"><a href="/client/register">Join</a></div>
<% } %>
2024-11-25 14:12:43 -05:00
<div class="button"><a href="https://discord.gg/7JJBYySY">Chat</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') -%>