Initial template creation

This commit is contained in:
GitLab
2019-03-06 09:51:55 +01:00
committed by Jason Lenny
commit cca5d1d2fb
15 changed files with 1503 additions and 0 deletions

9
routes/index.js Normal file
View File

@@ -0,0 +1,9 @@
var express = require('express');
var router = express.Router();
/* GET home page. */
router.get('/', function(req, res, next) {
res.render('index', { title: 'Express' });
});
module.exports = router;