initial project setup

This commit is contained in:
2022-09-29 15:46:33 +02:00
commit 6c666b555f
12 changed files with 6295 additions and 0 deletions

3
views/error.ejs Normal file
View File

@@ -0,0 +1,3 @@
<% layout('layout') -%>
Oops! Something went wrong :(

15
views/layout.ejs Normal file
View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New App 😀</title>
</head>
<body>
<%- body -%>
</body>
</html>