bigly-chat/views/main.ejs

25 lines
1.1 KiB
Text
Raw Normal View History

2024-09-18 18:47:09 -04:00
<%- include('header.ejs') -%>
2024-10-19 21:28:52 -04:00
<div class='banner'><img class='banner-background' src='/static/img/bg.svg'>
<div class='banner-content'>
<h1>BiglyChat</h1>
2024-10-30 19:59:28 -04:00
<p>BiglyChat is a niche community for broadcasting videos to your fanbase.</p>
2024-10-23 09:13:38 -04:00
<h2>Community</h2>
2024-10-19 21:28:52 -04:00
<%if (username=='!nobody' ) { %>
<a class='form-button' href="/client/register">Join the Community</a>
2024-10-27 00:26:02 -04:00
<br />
2024-10-19 21:28:52 -04:00
<% } %>
2024-10-27 00:26:02 -04:00
<a class='form-button' href="/client/tou">Terms of Use</a>
2024-10-23 09:13:38 -04:00
<a class='form-button' href="https://discord.gg/wZ3mg58JMT">Discord Server</a>
<a class='form-button' href="https://git.xuyezo.net/Zuxxied/bigly-chat">Developer Portal</a>
2024-10-19 21:28:52 -04:00
</div>
2024-09-18 18:47:09 -04:00
</div>
2024-10-23 21:52:45 -04:00
<h1 class='content-header'>Follow Feed</h1>
<div class=' videos'>
<%- include('videos.ejs', {videos: videosFollow}) -%>
</div>
2024-10-27 00:26:02 -04:00
2024-10-23 09:13:38 -04:00
<h1 class='content-header'>Recent Videos</h1>
<div class=' videos'>
<%- include('videos.ejs') -%>
2024-09-19 05:58:01 -04:00
</div>
2024-09-18 18:47:09 -04:00
<%- include('footer.ejs') -%>