Added Twig templating engine for handling views; Removed some unneeded CoffeeScript files

This commit is contained in:
2022-05-24 18:41:43 -04:00
parent 15585bac29
commit cb622ebea0
11 changed files with 194 additions and 113 deletions

View File

@ -1,3 +1,3 @@
exports.home = function(req, res, next) {
res.send('Hello World!');
res.render('index');
};