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>
2024-11-25 14:12:44 -05:00
<p>BiglyChat is a niche community for broadcasting videos, playing games, and chatting with friends.</p>
2024-11-25 14:12:44 -05:00
<h2>Community</h2>
2024-11-25 14:12:44 -05:00
<%if (username=='!nobody' ) { %>
<a class='form-button' href="/client/register">Join the Community</a>
2024-11-25 14:12:44 -05:00
<br />
2024-11-25 14:12:44 -05:00
<% } %>
2024-11-25 14:12:44 -05:00
<a class='form-button' href="/client/tou">Terms of Use</a>
2024-11-25 14:12:44 -05:00
<a class='form-button' href="https://dervland.net/">More Projects</a>
2024-11-25 14:12:44 -05:00
<a class='form-button' href="https://git.dervland.net/core/bigly-chat">Developer Portal</a>
2024-11-25 14:12:44 -05:00
</div>
2024-11-25 14:12:43 -05:00
</div>
2024-11-25 14:12:44 -05:00
<h1 class='content-header'>Follow Feed</h1>
<div class=' videos'>
<%- include('videos.ejs', {videos: videosFollow}) -%>
</div>
2024-11-25 14:12:44 -05:00
2024-11-25 14:12:44 -05:00
<h1 class='content-header'>Recent Videos</h1>
<div class=' videos'>
<%- include('videos.ejs') -%>
2024-11-25 14:12:43 -05:00
</div>
2024-11-25 14:12:43 -05:00
<%- include('footer.ejs') -%>