Zdruzil headerje
This commit is contained in:
parent
4303625b54
commit
f945d1524e
2
app.js
2
app.js
@ -75,7 +75,7 @@ app.use(function(err, req, res, next) {
|
|||||||
|
|
||||||
// render the error page
|
// render the error page
|
||||||
res.status(err.status || 500);
|
res.status(err.status || 500);
|
||||||
res.render('error');
|
res.render('error', {title:'Error'});
|
||||||
});
|
});
|
||||||
|
|
||||||
const port = 80;
|
const port = 80;
|
||||||
|
@ -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) {
|
||||||
res.render('main/1_0');
|
res.render('main/1_0', {title:'Nikola Petrov'});
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports = router;
|
module.exports = router;
|
||||||
|
@ -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) {
|
||||||
res.render('main/2_0');
|
res.render('main/2_0', {title:'Nikola Petrov'});
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports = router;
|
module.exports = router;
|
@ -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) {
|
||||||
res.render('movies/show');
|
res.render('movies/show', { title: 'Movies' });
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports = router;
|
module.exports = router;
|
@ -1,17 +1,2 @@
|
|||||||
<!DOCTYPE html>
|
<h1>{{message}}</h1>
|
||||||
<html lang="en" data-bs-theme="dark">
|
<h2>{{error.status}}</h2>
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
|
||||||
<title>Document</title>
|
|
||||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
|
|
||||||
<script defer src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>{{message}}</h1>
|
|
||||||
<h2>{{error.status}}</h2>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
@ -1 +1,15 @@
|
|||||||
{{{body}}}
|
<!doctype html>
|
||||||
|
<html lang="en" data-bs-theme="dark">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
|
||||||
|
<script defer src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
|
||||||
|
<title>{{title}}</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{{{body}}}
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
@ -1,191 +1,175 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<title>Portfolio</title>
|
|
||||||
|
|
||||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
|
|
||||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="/1_0/assets/fontawesome/css/all.css">
|
|
||||||
<link rel="stylesheet" href="/1_0/css/intro.css">
|
|
||||||
<link rel="stylesheet" href="/1_0/css/styles.css">
|
|
||||||
|
|
||||||
<script defer src="/1_0/assets/WinBox/winbox.bundle.js"></script>
|
|
||||||
<script defer src="/1_0/js/main.js"></script>
|
|
||||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="/1_0/assets/fontawesome/css/all.css">
|
||||||
|
<link rel="stylesheet" href="/1_0/css/intro.css">
|
||||||
|
<link rel="stylesheet" href="/1_0/css/styles.css">
|
||||||
|
<script defer src="/1_0/assets/WinBox/winbox.bundle.js"></script>
|
||||||
|
<script defer src="/1_0/js/main.js"></script>
|
||||||
|
|
||||||
<section class="intro">
|
|
||||||
<h1 class="section__title">
|
|
||||||
Hi, I am <strong>Nikola Petrov</strong>
|
|
||||||
</h1>
|
|
||||||
<p class="section__subtitle">2. Year RIT</p>
|
|
||||||
<img src="/images/Jaz.jpg" alt="a picture of Nikola Petrov" class="intro__img">
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<div class="container">
|
<section class="intro">
|
||||||
|
<h1 class="section__title">
|
||||||
|
Hi, I am <strong>Nikola Petrov</strong>
|
||||||
|
</h1>
|
||||||
|
<p class="section__subtitle">2. Year RIT</p>
|
||||||
|
<img src="/images/Jaz.jpg" alt="a picture of Nikola Petrov" class="intro__img">
|
||||||
|
</section>
|
||||||
|
|
||||||
<div class="text-center" id="buttons">
|
<div class="container">
|
||||||
<a class="btn btn-info btn-lg" id="git" href="https://gitlab.com/nikolape7">Git</a>
|
|
||||||
<button class="btn btn-info btn-lg" id="work-experiance">Work Experience</button>
|
|
||||||
<button class="btn btn-info btn-lg" id="education">Education</button>
|
|
||||||
<button class="btn btn-info btn-lg" id="documents">Documents</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row">
|
<div class="text-center" id="buttons">
|
||||||
<div class="col">
|
<a class="btn btn-info btn-lg" id="git" href="https://gitlab.com/nikolape7">Git</a>
|
||||||
<br>
|
<button class="btn btn-info btn-lg" id="work-experiance">Work Experience</button>
|
||||||
<h2>Skills</h2>
|
<button class="btn btn-info btn-lg" id="education">Education</button>
|
||||||
<div class="row justify-content-md-center">
|
<button class="btn btn-info btn-lg" id="documents">Documents</button>
|
||||||
<div class="col col-lg-2">
|
</div>
|
||||||
<table class="centered">
|
|
||||||
<tr><th>Language</th></tr>
|
<div class="row">
|
||||||
<tr><td>Slovenian</td></tr>
|
<div class="col">
|
||||||
<tr><td>English</td></tr>
|
<br>
|
||||||
</table>
|
<h2>Skills</h2>
|
||||||
</div>
|
<div class="row justify-content-md-center">
|
||||||
<div class="col-md-auto">
|
<div class="col col-lg-2">
|
||||||
<table class="centered">
|
<table class="centered">
|
||||||
<tr><th>Programming languages</th></tr>
|
<tr><th>Language</th></tr>
|
||||||
<tr><td>C/C++</td></tr>
|
<tr><td>Slovenian</td></tr>
|
||||||
<tr><td>html/css/js/php</td></tr>
|
<tr><td>English</td></tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-md-auto">
|
||||||
|
<table class="centered">
|
||||||
|
<tr><th>Programming languages</th></tr>
|
||||||
|
<tr><td>C/C++</td></tr>
|
||||||
|
<tr><td>html/css/js/php</td></tr>
|
||||||
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<br>
|
<br>
|
||||||
<h2>Contact</h2>
|
<h2>Contact</h2>
|
||||||
<table class="centered">
|
<table class="centered">
|
||||||
<tr><td>
|
<tr><td>
|
||||||
<a href="mailto:nikolape7@gmail.com">
|
<a href="mailto:nikolape7@gmail.com">
|
||||||
<i class="fa fa-envelope"></i>
|
<i class="fa fa-envelope"></i>
|
||||||
nikolape7@gmail.com
|
nikolape7@gmail.com
|
||||||
</a>
|
</a>
|
||||||
</td></tr>
|
</td></tr>
|
||||||
<tr><td>
|
<tr><td>
|
||||||
<a href="tel:070749506">
|
<a href="tel:070749506">
|
||||||
<i class="fa fa-phone"></i>
|
<i class="fa fa-phone"></i>
|
||||||
070 749 506
|
070 749 506
|
||||||
</a>
|
</a>
|
||||||
</td></tr>
|
</td></tr>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<section class="hidden">
|
||||||
|
<div id="work-experience-content">
|
||||||
|
<div class="container margin-top">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
<span style="font-size: 1.5em;">LightAct </span><br>
|
||||||
|
01/07/2022 - 01/09/2022
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<span style="font-size: 1.5em;">Developer/IT</span><br>
|
||||||
|
I helped maintaining data base, wored on the application (integrated a capture card and IP camera),
|
||||||
|
assembled new server rack, installed new UTP/power conectors in the office.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
<span style="font-size: 1.5em;">Institute 404</span><br>
|
||||||
|
08/06/2020 - 19/06/2020
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<span style="font-size: 1.5em;">Mentor</span><br>
|
||||||
|
I helped primary school children with their projects with soldering, laser cutting,
|
||||||
|
and building. And I helped with a cement 3D printer.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
<span style="font-size: 1.5em;">Hella Saturnos d.o.o.</span><br>
|
||||||
|
04/09/2018 - 18/01/2019<br>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<span style="font-size: 1.5em;">Maintenance technician</span><br>
|
||||||
|
I maintained and repaired machines from plastic presses to personal stations.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
<span style="font-size: 1.5em;">Best Western Premier Hotel Slon</span><br>
|
||||||
|
01/03/2018 - 04/05/2018<br>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<span style="font-size: 1.5em;">Maintenance technician</span><br>
|
||||||
|
I helped with setting up the conference/event rooms.
|
||||||
|
I helped customers and fixed problems like replacing light bulbs, wall sockets, hair-dryers.
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<section class="hidden">
|
<div id="education-content">
|
||||||
<div id="work-experience-content">
|
<div class="container margin-top">
|
||||||
<div class="container margin-top">
|
<p>
|
||||||
<div class="row">
|
<span class="hidden" style="font-size: 0.75em;">
|
||||||
<div class="col">
|
<i class="fa-solid fa-calendar-days"></i> 01/10/2021 - CURRENT
|
||||||
<span style="font-size: 1.5em;">LightAct </span><br>
|
<i class="fa-solid fa-location-dot"></i> Koroška cesta 46, Maribor, Slovenia <br>
|
||||||
01/07/2022 - 01/09/2022
|
</span>
|
||||||
</div>
|
<span style="font-size: 1.1em;">
|
||||||
<div class="col">
|
Faculty of Electrical Engineering and Computer Science, University of Maribor <br>
|
||||||
<span style="font-size: 1.5em;">Developer/IT</span><br>
|
</span>
|
||||||
I helped maintaining data base, wored on the application (integrated a capture card and IP camera),
|
<span style="font-size: 1.6em; line-height: 1em; color: #0dcaf0;">
|
||||||
assembled new server rack, installed new UTP/power conectors in the office.
|
Graduate engineer of computer science and information technology<br>
|
||||||
</div>
|
</span>
|
||||||
</div>
|
<span>
|
||||||
<div class="row">
|
<a href="https://feri.um.si/">
|
||||||
<div class="col">
|
<i class="fa-solid fa-globe"></i>
|
||||||
<span style="font-size: 1.5em;">Institute 404</span><br>
|
https://feri.um.si/
|
||||||
08/06/2020 - 19/06/2020
|
</a>
|
||||||
</div>
|
</span>
|
||||||
<div class="col">
|
</p>
|
||||||
<span style="font-size: 1.5em;">Mentor</span><br>
|
|
||||||
I helped primary school children with their projects with soldering, laser cutting,
|
|
||||||
and building. And I helped with a cement 3D printer.
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col">
|
|
||||||
<span style="font-size: 1.5em;">Hella Saturnos d.o.o.</span><br>
|
|
||||||
04/09/2018 - 18/01/2019<br>
|
|
||||||
</div>
|
|
||||||
<div class="col">
|
|
||||||
<span style="font-size: 1.5em;">Maintenance technician</span><br>
|
|
||||||
I maintained and repaired machines from plastic presses to personal stations.
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="col">
|
|
||||||
<span style="font-size: 1.5em;">Best Western Premier Hotel Slon</span><br>
|
|
||||||
01/03/2018 - 04/05/2018<br>
|
|
||||||
</div>
|
|
||||||
<div class="col">
|
|
||||||
<span style="font-size: 1.5em;">Maintenance technician</span><br>
|
|
||||||
I helped with setting up the conference/event rooms.
|
|
||||||
I helped customers and fixed problems like replacing light bulbs, wall sockets, hair-dryers.
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="education-content">
|
<p>
|
||||||
<div class="container margin-top">
|
<span class="hidden" style="font-size: 0.75em;">
|
||||||
<p>
|
<i class="fa-solid fa-calendar-days"></i> 01/09/2016 - 07/07/2021
|
||||||
<span class="hidden" style="font-size: 0.75em;">
|
<i class="fa-solid fa-location-dot"></i> Litostrojska Cesta 51, Ljubljana, Slovenia <br>
|
||||||
<i class="fa-solid fa-calendar-days"></i> 01/10/2021 - CURRENT
|
</span>
|
||||||
<i class="fa-solid fa-location-dot"></i> Koroška cesta 46, Maribor, Slovenia <br>
|
<span style="font-size: 1.1em;">
|
||||||
</span>
|
Secondary school of technical professions šiška<br>
|
||||||
<span style="font-size: 1.1em;">
|
</span>
|
||||||
Faculty of Electrical Engineering and Computer Science, University of Maribor <br>
|
<span style="font-size: 1.6em; line-height: 1em; color: #0dcaf0;">
|
||||||
</span>
|
Electrotechnician<br>
|
||||||
<span style="font-size: 1.6em; line-height: 1em; color: #0dcaf0;">
|
</span>
|
||||||
Graduate engineer of computer science and information technology<br>
|
<span>
|
||||||
</span>
|
<a href="https://ssts.si/">
|
||||||
<span>
|
<i class="fa-solid fa-globe"></i>
|
||||||
<a href="https://feri.um.si/">
|
https://ssts.si/
|
||||||
<i class="fa-solid fa-globe"></i>
|
</a>
|
||||||
https://feri.um.si/
|
</span>
|
||||||
</a>
|
</p>
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<span class="hidden" style="font-size: 0.75em;">
|
|
||||||
<i class="fa-solid fa-calendar-days"></i> 01/09/2016 - 07/07/2021
|
|
||||||
<i class="fa-solid fa-location-dot"></i> Litostrojska Cesta 51, Ljubljana, Slovenia <br>
|
|
||||||
</span>
|
|
||||||
<span style="font-size: 1.1em;">
|
|
||||||
Secondary school of technical professions šiška<br>
|
|
||||||
</span>
|
|
||||||
<span style="font-size: 1.6em; line-height: 1em; color: #0dcaf0;">
|
|
||||||
Electrotechnician<br>
|
|
||||||
</span>
|
|
||||||
<span>
|
|
||||||
<a href="https://ssts.si/">
|
|
||||||
<i class="fa-solid fa-globe"></i>
|
|
||||||
https://ssts.si/
|
|
||||||
</a>
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="documents-content">
|
<br>
|
||||||
<div class="container margin-top">
|
<br>
|
||||||
<div class="row">
|
</div>
|
||||||
<a href="/doc/CV.pdf" class="btn btn-info" download="Nikola_Petrov_CV">CV</a>
|
</div>
|
||||||
<a href="/doc/Certificate.pdf" class="btn btn-info" download="Nikola_Petrov_electrotechnician_certificate">Electrotechnician certificate</a>
|
|
||||||
</div>
|
<div id="documents-content">
|
||||||
|
<div class="container margin-top">
|
||||||
|
<div class="row">
|
||||||
|
<a href="/doc/CV.pdf" class="btn btn-info" download="Nikola_Petrov_CV">CV</a>
|
||||||
|
<a href="/doc/Certificate.pdf" class="btn btn-info" download="Nikola_Petrov_electrotechnician_certificate">Electrotechnician certificate</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
1247
views/main/2_0.hbs
1247
views/main/2_0.hbs
File diff suppressed because it is too large
Load Diff
@ -1,24 +1,11 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en" data-bs-theme="dark">
|
<script defer src="/p_movies/script.js"></script>
|
||||||
<head>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<div class="album py-5 bg-body-tertiary">
|
||||||
<title>Movies</title>
|
<div class="container">
|
||||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
|
<div id="movie_tbody" class="row row-cols-3 row-cols-sm-4 row-cols-md-5 row-cols-lg-6 g-3">
|
||||||
<script defer src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
|
<!-- JS puts images here -->
|
||||||
|
</div>
|
||||||
</head>
|
</div>
|
||||||
<body>
|
</div>
|
||||||
<script defer src="/p_movies/script.js"></script>
|
|
||||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
|
|
||||||
|
|
||||||
<div class="album py-5 bg-body-tertiary">
|
|
||||||
<div class="container">
|
|
||||||
<div id="movie_tbody" class="row row-cols-3 row-cols-sm-4 row-cols-md-5 row-cols-lg-6 g-3">
|
|
||||||
<!-- JS puts images here -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Loading…
x
Reference in New Issue
Block a user