From f3df4b9913dcf18572d6604b808b4b36a0234887 Mon Sep 17 00:00:00 2001 From: Nikola Petrov Date: Mon, 26 Aug 2024 19:25:51 +0200 Subject: [PATCH] update main --- routes/main.ts | 5 +---- views/main/2_0.hbs | 16 ++++++++++------ 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/routes/main.ts b/routes/main.ts index dfa25ee..d173817 100644 --- a/routes/main.ts +++ b/routes/main.ts @@ -5,10 +5,7 @@ const router = express.Router(); /* GET home page. */ router.get('/', function (req: Request, res: Response) { - const project = userData.project; - const experience = userData.experience; - const education = userData.education; - res.render('main/2_0', { project, experience, education }); + res.render('main/2_0', { userData }); }); router.get('/cv', function (req: Request, res: Response) { diff --git a/views/main/2_0.hbs b/views/main/2_0.hbs index 330989c..d971beb 100644 --- a/views/main/2_0.hbs +++ b/views/main/2_0.hbs @@ -17,6 +17,8 @@ +{{#with userData}} +