change to ejs

This commit is contained in:
biglyderv 2024-11-25 14:12:43 -05:00
parent 9287290479
commit e92c87c5da
11 changed files with 62 additions and 74 deletions

16
views/main.ejs Normal file
View file

@ -0,0 +1,16 @@
<%- include('header.ejs') -%>
<div class='area'>
<h1>About</h1>
<p>
<b>BiglyChat</b> is a project sharing communtiy built on <a href='https://scratch.mit.edu/'>Scratch</a> and
<a href='https://turbowarp.org'>TurboWarp</a>
. The source code is <a href='https://codeberg.org/onezDerv/bigly-chat'>free software</a>.
</p>
<p>
Anyone can selfhost an instance to take control of their community.
</p>
<%if (username=='!nobody' ) { %>
<div class="button"><a href="/client/register">Join</a></div>
<% } %>
</div>
<%- include('footer.ejs') -%>