boilerplate

This commit is contained in:
biglyderv 2025-02-25 13:00:10 -05:00
commit bf77320bc7
Signed by: biglyderv
GPG key ID: 0E2EB0B4CD7397B5
10 changed files with 3638 additions and 0 deletions

4
views/404.ejs Normal file
View file

@ -0,0 +1,4 @@
<div class="main">
<h1 class='header'>Oops!</h1>
<p>Something went wrong; this page couldn't be found.</p>
</div>

5
views/header.ejs Normal file
View file

@ -0,0 +1,5 @@
<div class="nav">
<a class='header-a' href="/"><img class="header-img" src="/icon.svg">DervNet</a>
<a class='header-a' href="/"><img class="header-img" src="/icon.svg">Filler1</a>
<a class='header-a' href="/"><img class="header-img" src="/icon.svg">Filler2</a>
</div>

16
views/root.ejs Normal file
View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>DervNet</title>
<link rel="stylesheet" href="index.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<%- include('header.ejs',headerCtx); %>
<%- include(mainPage, mainCtx); %>
</body>
</html>