generated backend with express

This commit is contained in:
Will Baumbach
2026-04-22 10:33:03 -05:00
parent 1eb77cd6b6
commit 3744423e5f
12 changed files with 1237 additions and 0 deletions

6
backend/views/error.jade Normal file
View File

@@ -0,0 +1,6 @@
extends layout
block content
h1= message
h2= error.status
pre #{error.stack}

5
backend/views/index.jade Normal file
View File

@@ -0,0 +1,5 @@
extends layout
block content
h1= title
p Welcome to #{title}

View File

@@ -0,0 +1,7 @@
doctype html
html
head
title= title
link(rel='stylesheet', href='/stylesheets/style.css')
body
block content