moved app into app subdirectory

This commit is contained in:
2022-09-30 08:54:27 +02:00
parent 6c666b555f
commit b5eafd0a96
8 changed files with 5 additions and 0 deletions

3
app/views/error.ejs Normal file
View File

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

15
app/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>