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
|
||||
res.status(err.status || 500);
|
||||
res.render('error');
|
||||
res.render('error', {title:'Error'});
|
||||
});
|
||||
|
||||
const port = 80;
|
||||
|
@ -3,7 +3,7 @@ var router = express.Router();
|
||||
|
||||
/* GET home page. */
|
||||
router.get('/', function(req, res, next) {
|
||||
res.render('main/1_0');
|
||||
res.render('main/1_0', {title:'Nikola Petrov'});
|
||||
});
|
||||
|
||||
module.exports = router;
|
||||
|
@ -3,7 +3,7 @@ var router = express.Router();
|
||||
|
||||
/* GET home page. */
|
||||
router.get('/', function(req, res, next) {
|
||||
res.render('main/2_0');
|
||||
res.render('main/2_0', {title:'Nikola Petrov'});
|
||||
});
|
||||
|
||||
module.exports = router;
|
@ -3,7 +3,7 @@ var router = express.Router();
|
||||
|
||||
/* GET home page. */
|
||||
router.get('/', function(req, res, next) {
|
||||
res.render('movies/show');
|
||||
res.render('movies/show', { title: 'Movies' });
|
||||
});
|
||||
|
||||
module.exports = router;
|
@ -1,17 +1,2 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" data-bs-theme="dark">
|
||||
<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>
|
||||
|
||||
<h1>{{message}}</h1>
|
||||
<h2>{{error.status}}</h2>
|
@ -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">
|
||||
<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="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<br>
|
||||
<h2>Skills</h2>
|
||||
<div class="row justify-content-md-center">
|
||||
<div class="col col-lg-2">
|
||||
<table class="centered">
|
||||
<tr><th>Language</th></tr>
|
||||
<tr><td>Slovenian</td></tr>
|
||||
<tr><td>English</td></tr>
|
||||
</table>
|
||||
</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 class="text-center" id="buttons">
|
||||
<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="col">
|
||||
<br>
|
||||
<h2>Skills</h2>
|
||||
<div class="row justify-content-md-center">
|
||||
<div class="col col-lg-2">
|
||||
<table class="centered">
|
||||
<tr><th>Language</th></tr>
|
||||
<tr><td>Slovenian</td></tr>
|
||||
<tr><td>English</td></tr>
|
||||
</table>
|
||||
</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 class="col">
|
||||
<br>
|
||||
<h2>Contact</h2>
|
||||
<table class="centered">
|
||||
<tr><td>
|
||||
<a href="mailto:nikolape7@gmail.com">
|
||||
<i class="fa fa-envelope"></i>
|
||||
nikolape7@gmail.com
|
||||
</a>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<a href="tel:070749506">
|
||||
<i class="fa fa-phone"></i>
|
||||
070 749 506
|
||||
</a>
|
||||
</td></tr>
|
||||
</table>
|
||||
<div class="col">
|
||||
<br>
|
||||
<h2>Contact</h2>
|
||||
<table class="centered">
|
||||
<tr><td>
|
||||
<a href="mailto:nikolape7@gmail.com">
|
||||
<i class="fa fa-envelope"></i>
|
||||
nikolape7@gmail.com
|
||||
</a>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
<a href="tel:070749506">
|
||||
<i class="fa fa-phone"></i>
|
||||
070 749 506
|
||||
</a>
|
||||
</td></tr>
|
||||
</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>
|
||||
|
||||
<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 id="education-content">
|
||||
<div class="container margin-top">
|
||||
<p>
|
||||
<span class="hidden" style="font-size: 0.75em;">
|
||||
<i class="fa-solid fa-calendar-days"></i> 01/10/2021 - CURRENT
|
||||
<i class="fa-solid fa-location-dot"></i> Koroška cesta 46, Maribor, Slovenia <br>
|
||||
</span>
|
||||
<span style="font-size: 1.1em;">
|
||||
Faculty of Electrical Engineering and Computer Science, University of Maribor <br>
|
||||
</span>
|
||||
<span style="font-size: 1.6em; line-height: 1em; color: #0dcaf0;">
|
||||
Graduate engineer of computer science and information technology<br>
|
||||
</span>
|
||||
<span>
|
||||
<a href="https://feri.um.si/">
|
||||
<i class="fa-solid fa-globe"></i>
|
||||
https://feri.um.si/
|
||||
</a>
|
||||
</span>
|
||||
</p>
|
||||
|
||||
<div id="education-content">
|
||||
<div class="container margin-top">
|
||||
<p>
|
||||
<span class="hidden" style="font-size: 0.75em;">
|
||||
<i class="fa-solid fa-calendar-days"></i> 01/10/2021 - CURRENT
|
||||
<i class="fa-solid fa-location-dot"></i> Koroška cesta 46, Maribor, Slovenia <br>
|
||||
</span>
|
||||
<span style="font-size: 1.1em;">
|
||||
Faculty of Electrical Engineering and Computer Science, University of Maribor <br>
|
||||
</span>
|
||||
<span style="font-size: 1.6em; line-height: 1em; color: #0dcaf0;">
|
||||
Graduate engineer of computer science and information technology<br>
|
||||
</span>
|
||||
<span>
|
||||
<a href="https://feri.um.si/">
|
||||
<i class="fa-solid fa-globe"></i>
|
||||
https://feri.um.si/
|
||||
</a>
|
||||
</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>
|
||||
<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>
|
||||
|
||||
<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>
|
||||
<br>
|
||||
<br>
|
||||
</div>
|
||||
</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>
|
||||
|
||||
</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">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Movies</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>
|
||||
<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>
|
||||
|
||||
<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>
|
Loading…
x
Reference in New Issue
Block a user