add education to to template
This commit is contained in:
parent
754e140288
commit
b12c73ed04
@ -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) {
|
||||
|
@ -269,32 +269,13 @@
|
||||
</div>
|
||||
|
||||
<ol class="timeline-list">
|
||||
|
||||
{{#each education}}
|
||||
<li class="timeline-item">
|
||||
|
||||
<h4 class="h4 timeline-item-title">(FERI) Faculty of Electrical Engineering and Computer Science, University
|
||||
of Maribor</h4>
|
||||
|
||||
<span>01/10/2021 - CURRENT</span>
|
||||
|
||||
<p class="timeline-text">
|
||||
Graduate engineer of computer science and information technology
|
||||
</p>
|
||||
|
||||
<h4 class="h4 timeline-item-title">{{title}}</h4>
|
||||
<span>{{time}}</span>
|
||||
<p class="timeline-text">{{des}}</p>
|
||||
</li>
|
||||
|
||||
<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>
|
||||
|
||||
{{/each}}
|
||||
</ol>
|
||||
|
||||
</section>
|
||||
|
Loading…
x
Reference in New Issue
Block a user