aboutsummaryrefslogtreecommitdiff
path: root/routes
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@gmail.com>2019-08-02 12:06:56 -0400
committerAndrew Lee <alee14498@gmail.com>2019-08-02 12:06:56 -0400
commitf7c360592b6c2ef24b033280aa977a894349476a (patch)
treed057e242caccb73f02ec37c3693317a638fb356a /routes
parentab197dc41a884902625aff031cf0df089b8065b6 (diff)
downloadalp-website-f7c360592b6c2ef24b033280aa977a894349476a.tar.gz
alp-website-f7c360592b6c2ef24b033280aa977a894349476a.tar.bz2
alp-website-f7c360592b6c2ef24b033280aa977a894349476a.zip
Finally making some progress on the website
Diffstat (limited to 'routes')
-rw-r--r--routes/index.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/routes/index.js b/routes/index.js
new file mode 100644
index 0000000..b12714e
--- /dev/null
+++ b/routes/index.js
@@ -0,0 +1,8 @@
+const express = require("express");
+const router = express.Router();
+
+router.get('/', (req, res) => {
+ res.render('index', {title: 'Home | Alee Productions'});
+ });
+
+module.exports = router; \ No newline at end of file