add education to to template

This commit is contained in:
Nikola Petrov
2024-05-17 10:36:45 +02:00
parent 754e140288
commit b12c73ed04
2 changed files with 24 additions and 25 deletions

View File

@@ -60,6 +60,11 @@ router.get('/', function (req, res, next) {
}
];
const experience = [
{
title: "RRC",
time: "18/03/2024 - 31/05/2022",
des: "Student practicum is good ",
},
{
title: "LightAct [ Developer/IT ]",
time: "01/07/2022 - 01/09/2022",
@@ -81,7 +86,20 @@ router.get('/', function (req, res, next) {
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 });
const education = [
{
title: "(FERI) Faculty of Electrical Engineering and Computer Science, University of Maribor",
time: "01/10/2021 - CURRENT",
des: "Graduate engineer of computer science and information technology",
},
{
title: "(SŠTS Šiška) Secondary school of technical professions šiška",
time: "01/09/2016 - 07/07/2021",
des: "Electrotechnician",
}
];
res.render('main/2_0', { title: 'Nikola Petrov', disableBootStrap: true, project, experience, education });
});
router.get('/old', function (req, res, next) {