From fecf753e7a6a0094818f62f3016ff036ba9e80a7 Mon Sep 17 00:00:00 2001 From: Gringo <timothe.barthez@student-cs.fr> Date: Wed, 25 Dec 2019 19:33:42 +0100 Subject: [PATCH] fix tout nul sur le front --- routes/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/index.js b/routes/index.js index 0873920..159df87 100644 --- a/routes/index.js +++ b/routes/index.js @@ -14,7 +14,7 @@ myCache.on("expired", function (key, value) { /* GET home page. */ router.get('/', function(req, res, next) { - res.render('index', { title: 'Express' }); + res.render('index', { title: 'Graphe des assos' }); }); -- GitLab