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 = [ const experience = [
{
title: "RRC",
time: "18/03/2024 - 31/05/2022",
des: "Student practicum is good ",
},
{ {
title: "LightAct [ Developer/IT ]", title: "LightAct [ Developer/IT ]",
time: "01/07/2022 - 01/09/2022", 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.", 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) { router.get('/old', function (req, res, next) {

View File

@ -269,32 +269,13 @@
</div> </div>
<ol class="timeline-list"> <ol class="timeline-list">
{{#each education}}
<li class="timeline-item"> <li class="timeline-item">
<h4 class="h4 timeline-item-title">{{title}}</h4>
<h4 class="h4 timeline-item-title">(FERI) Faculty of Electrical Engineering and Computer Science, University <span>{{time}}</span>
of Maribor</h4> <p class="timeline-text">{{des}}</p>
<span>01/10/2021 - CURRENT</span>
<p class="timeline-text">
Graduate engineer of computer science and information technology
</p>
</li> </li>
{{/each}}
<li class="timeline-item">
<h4 class="h4 timeline-item-title">(SŠTS Šiška) Secondary school of technical professions šiška</h4>
<span>01/09/2016 - 07/07/2021</span>
<p class="timeline-text">
Electrotechnician
</p>
</li>
</ol> </ol>
</section> </section>