first commit
This commit is contained in:
15
dockers/quotas/html/express_webapp/routes/index.js
Normal file
15
dockers/quotas/html/express_webapp/routes/index.js
Normal file
@ -0,0 +1,15 @@
|
||||
var express = require('express');
|
||||
var router = express.Router();
|
||||
|
||||
//_________________________________________________________________
|
||||
// script route pour la page index.jade
|
||||
//
|
||||
// Auteur : Nathaniel GUIQUERRO
|
||||
//_________________________________________________________________
|
||||
|
||||
/* GET home page. */
|
||||
router.get('/', function(req, res, next) {
|
||||
res.render('index', { title: 'Express' });
|
||||
});
|
||||
|
||||
module.exports = router;
|
Reference in New Issue
Block a user