boilerplate
This commit is contained in:
commit
bf77320bc7
10 changed files with 3638 additions and 0 deletions
4
views/404.ejs
Normal file
4
views/404.ejs
Normal 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
5
views/header.ejs
Normal 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
16
views/root.ejs
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue