rebranding
This commit is contained in:
parent
e92c87c5da
commit
a881077f7f
4 changed files with 22 additions and 11 deletions
|
@ -2,7 +2,7 @@
|
||||||
body {
|
body {
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
padding-top: 0px;
|
margin-top: 0px;
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -84,3 +84,17 @@ form {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
width: 150px;
|
width: 150px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
background: var(--dark-1);
|
||||||
|
color: var(--light-1);
|
||||||
|
padding: 10px;
|
||||||
|
display: flex;
|
||||||
|
width: 100vw;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header a {
|
||||||
|
font-weight: bold;
|
||||||
|
color: white;
|
||||||
|
}
|
|
@ -7,3 +7,4 @@
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
<%- include('header_block.ejs') -%>
|
3
views/header_block.ejs
Normal file
3
views/header_block.ejs
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<div class='header'>
|
||||||
|
<a href='/'>BiglyChat</a>
|
||||||
|
</div>
|
|
@ -1,14 +1,7 @@
|
||||||
<%- include('header.ejs') -%>
|
<%- include('header.ejs') -%>
|
||||||
<div class='area'>
|
<div class='area'>
|
||||||
<h1>About</h1>
|
<h1>BiglyChat</h1>
|
||||||
<p>
|
<p>A community for video editing</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' ) { %>
|
<%if (username=='!nobody' ) { %>
|
||||||
<div class="button"><a href="/client/register">Join</a></div>
|
<div class="button"><a href="/client/register">Join</a></div>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
|
Loading…
Reference in a new issue