X-Git-Url: https://git.josue.xyz/?p=josuexyz%2F.git;a=blobdiff_plain;f=routes%2Findex.js;h=6522beac56495d7f207bd7351ea5c9674a454422;hp=395c0ec1f1e08c29524ab1ee20572ab0ee85d554;hb=0caa9e344e0c24df276232f123cc918da8823492;hpb=e697cc21ff658d51a76493b1ada0e88d63bf2e11 diff --git a/routes/index.js b/routes/index.js index 395c0ec..6522bea 100644 --- a/routes/index.js +++ b/routes/index.js @@ -3,7 +3,11 @@ var router = express.Router(); /* GET home page. */ router.get('/', function(req, res, next) { - res.render('index', { title: 'Oscar J Rodriguez B' }); + res.render('index', { title: 'Oscar Rodríguez' }); +}); + +router.get('/plantilla', function(req, res, next) { + res.render('plantilla'); }); module.exports = router;