make experiance in to template
This commit is contained in:
parent
5aeeba811a
commit
754e140288
@ -3,7 +3,7 @@ var router = express.Router();
|
|||||||
|
|
||||||
/* GET home page. */
|
/* GET home page. */
|
||||||
router.get('/', function (req, res, next) {
|
router.get('/', function (req, res, next) {
|
||||||
const entry = [
|
const project = [
|
||||||
{
|
{
|
||||||
img: "/images/projects/Advent_Of_Code_Logo.jpg",
|
img: "/images/projects/Advent_Of_Code_Logo.jpg",
|
||||||
title: "Advent of code",
|
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"
|
link: "https://gitlab.com/school221/semester_5/uvod_v_razvoj_racunalniskih_iger"
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
const experience = [
|
||||||
res.render('main/2_0', { title: 'Nikola Petrov', disableBootStrap: true, entry });
|
{
|
||||||
|
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) {
|
router.get('/old', function (req, res, next) {
|
||||||
|
@ -310,41 +310,15 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ol class="timeline-list">
|
<ol class="timeline-list">
|
||||||
|
{{#each experience}}
|
||||||
<li class="timeline-item">
|
<li class="timeline-item">
|
||||||
<h4 class="h4 timeline-item-title">LightAct [ Developer/IT ]</h4>
|
<h4 class="h4 timeline-item-title">{{title}}</h4>
|
||||||
<span>01/07/2022 - 01/09/2022</span>
|
<span>{{time}}</span>
|
||||||
<p class="timeline-text">
|
<p class="timeline-text">
|
||||||
I helped maintaining data base, worked on the application (integrated a capture card and IP camera),
|
{{des}}
|
||||||
assembled new server rack, installed new UTP/power connectors in the office.
|
|
||||||
</p>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="timeline-item">
|
|
||||||
<h4 class="h4 timeline-item-title">Institute 404 [ Mentor ]</h4>
|
|
||||||
<span>08/06/2020 - 19/06/2020</span>
|
|
||||||
<p class="timeline-text">
|
|
||||||
I helped primary school children with their projects with soldering, laser cutting,
|
|
||||||
and building.
|
|
||||||
</p>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="timeline-item">
|
|
||||||
<h4 class="h4 timeline-item-title">Hella Saturnos d.o.o. [ Maintenance technician ]</h4>
|
|
||||||
<span>04/09/2018 - 18/01/2019</span>
|
|
||||||
<p class="timeline-text">
|
|
||||||
I maintained and repaired machines from plastic presses to personal stations.
|
|
||||||
</p>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="timeline-item">
|
|
||||||
<h4 class="h4 timeline-item-title">Best Western Premier Hotel Slon [ Maintenance technician ]</h4>
|
|
||||||
<span>01/03/2018 - 04/05/2018</span>
|
|
||||||
<p class="timeline-text">
|
|
||||||
I helped with setting up the conference/event rooms.
|
|
||||||
I helped customers and fixed problems like replacing light bulbs, wall sockets, hair-dryers.
|
|
||||||
</p>
|
</p>
|
||||||
</li>
|
</li>
|
||||||
|
{{/each}}
|
||||||
|
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
@ -367,7 +341,7 @@
|
|||||||
|
|
||||||
<ul class="project-list">
|
<ul class="project-list">
|
||||||
|
|
||||||
{{#each entry}}
|
{{#each project}}
|
||||||
<li class="project-item active">
|
<li class="project-item active">
|
||||||
<a href="{{link}}">
|
<a href="{{link}}">
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user