From 754e14028880225a69faa93893c68b285a065cf8 Mon Sep 17 00:00:00 2001 From: Nikola Petrov Date: Thu, 16 May 2024 14:16:42 +0200 Subject: [PATCH] make experiance in to template --- routes/main.js | 27 ++++++++++++++++++++++++--- views/main/2_0.hbs | 38 ++++++-------------------------------- 2 files changed, 30 insertions(+), 35 deletions(-) diff --git a/routes/main.js b/routes/main.js index 885c9f9..351c9fa 100644 --- a/routes/main.js +++ b/routes/main.js @@ -3,7 +3,7 @@ var router = express.Router(); /* GET home page. */ router.get('/', function (req, res, next) { - const entry = [ + const project = [ { img: "/images/projects/Advent_Of_Code_Logo.jpg", title: "Advent of code", @@ -59,8 +59,29 @@ router.get('/', function (req, res, next) { link: "https://gitlab.com/school221/semester_5/uvod_v_razvoj_racunalniskih_iger" } ]; - - res.render('main/2_0', { title: 'Nikola Petrov', disableBootStrap: true, entry }); + const experience = [ + { + title: "LightAct [ Developer/IT ]", + time: "01/07/2022 - 01/09/2022", + des: "I helped maintaining data base, worked on the application (integrated a capture card and IP camera), assembled new server rack, installed new UTP/power connectors in the office", + }, + { + title: "Institute 404 [ Mentor ]", + time: "08/06/2020 - 19/06/2020", + des: "I helped primary school children with their projects with soldering, laser cutting, and building.", + }, + { + title: "Hella Saturnos d.o.o. [ Maintenance technician ]", + time: "04/09/2018 - 18/01/2019", + des: "I maintained and repaired machines from plastic presses to personal stations.", + }, + { + title: "Best Western Premier Hotel Slon [ Maintenance technician ]", + time: "01/03/2018 - 04/05/2018", + des: "I helped with setting up the conference/event rooms. I helped customers and fixed problems like replacing light bulbs, wall sockets, hair-dryers.", + } + ]; + res.render('main/2_0', { title: 'Nikola Petrov', disableBootStrap: true, project, experience }); }); router.get('/old', function (req, res, next) { diff --git a/views/main/2_0.hbs b/views/main/2_0.hbs index 4f30f97..1efaf76 100644 --- a/views/main/2_0.hbs +++ b/views/main/2_0.hbs @@ -310,41 +310,15 @@
    - + {{#each experience}}
  1. -

    LightAct [ Developer/IT ]

    - 01/07/2022 - 01/09/2022 +

    {{title}}

    + {{time}}

    - I helped maintaining data base, worked on the application (integrated a capture card and IP camera), - assembled new server rack, installed new UTP/power connectors in the office. -

    -
  2. - -
  3. -

    Institute 404 [ Mentor ]

    - 08/06/2020 - 19/06/2020 -

    - I helped primary school children with their projects with soldering, laser cutting, - and building. -

    -
  4. - -
  5. -

    Hella Saturnos d.o.o. [ Maintenance technician ]

    - 04/09/2018 - 18/01/2019 -

    - I maintained and repaired machines from plastic presses to personal stations. -

    -
  6. - -
  7. -

    Best Western Premier Hotel Slon [ Maintenance technician ]

    - 01/03/2018 - 04/05/2018 -

    - I helped with setting up the conference/event rooms. - I helped customers and fixed problems like replacing light bulbs, wall sockets, hair-dryers. + {{des}}

  8. + {{/each}}
@@ -367,7 +341,7 @@