remove layout.hbs

This commit is contained in:
Nikola Petrov 2024-07-31 15:53:27 +02:00
parent 0c19dde34d
commit 4c8e1460fb
9 changed files with 810 additions and 689 deletions

View File

@ -4,13 +4,13 @@ import UserModel, { values } from '../models/userModel';
export default { export default {
render: async function (req: Request, res: Response) { render: async function (req: Request, res: Response) {
res.render('user', { title: 'Register', keys: UserModel.namesOfValues }); res.render('user', { keys: UserModel.namesOfValues });
}, },
create: async function (req: Request, res: Response) { create: async function (req: Request, res: Response) {
const reqPassword: string = req.body.reqPassword; const reqPassword: string = req.body.reqPassword;
if (!reqPassword) return res.render('user', { title: 'Register', keys: UserModel.namesOfValues }); if (!reqPassword) return res.render('user', { keys: UserModel.namesOfValues });
const password = await UserModel.getValue(values.pass); const password = await UserModel.getValue(values.pass);
@ -20,11 +20,11 @@ export default {
if (affectedRows > 0) { if (affectedRows > 0) {
return res.redirect('/list'); return res.redirect('/list');
} }
return res.render('user', { title: 'Register', keys: UserModel.namesOfValues }); return res.render('user', { keys: UserModel.namesOfValues });
} }
// check if passwords equal // check if passwords equal
if (password != reqPassword) { if (password != reqPassword) {
return res.render('user', { title: 'Register', keys: UserModel.namesOfValues }); return res.render('user', { keys: UserModel.namesOfValues });
} }
// update // update
@ -32,12 +32,12 @@ export default {
const value: string = req.body.value; const value: string = req.body.value;
if (!name || !value) { if (!name || !value) {
return res.render('user', { title: 'Register', keys: UserModel.namesOfValues }); return res.render('user', { keys: UserModel.namesOfValues });
} }
const affectedRows = await UserModel.updateValue(name, value); const affectedRows = await UserModel.updateValue(name, value);
if (affectedRows == 0) { if (affectedRows == 0) {
return res.render('user', { title: 'Register', keys: UserModel.namesOfValues }); return res.render('user', { keys: UserModel.namesOfValues });
} }
return res.redirect('/list'); return res.redirect('/list');

View File

@ -8,15 +8,15 @@ router.get('/', function (req: Request, res: Response) {
const project = userData.project; const project = userData.project;
const experience = userData.experience; const experience = userData.experience;
const education = userData.education; const education = userData.education;
res.render('main/2_0', { title: 'Nikola Petrov', disableBootStrap: true, project, experience, education }); res.render('main/2_0', { project, experience, education });
}); });
router.get('/cv', function (req: Request, res: Response) { router.get('/cv', function (req: Request, res: Response) {
res.render('cv', { title: 'Nikola Petrov', disableBootStrap: true, userData }); res.render('cv', { userData });
}); });
router.get('/old', function (req: Request, res: Response) { router.get('/old', function (req: Request, res: Response) {
res.render('main/1_0', { title: 'Nikola Petrov' }); res.render('main/1_0');
}); });
router.get('/mail', function (req: Request, res: Response) { router.get('/mail', function (req: Request, res: Response) {
@ -24,11 +24,11 @@ router.get('/mail', function (req: Request, res: Response) {
}); });
router.get('/list', function (req: Request, res: Response) { router.get('/list', function (req: Request, res: Response) {
res.render('list', { title: 'List' }); res.render('list');
}); });
router.get('/cash', function (req: Request, res: Response) { router.get('/cash', function (req: Request, res: Response) {
res.render('cash', { title: 'Cash' }); res.render('cash');
}); });
//import userRouter from './user'; //import userRouter from './user';

View File

@ -1,4 +1,25 @@
<!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="images/logo.ico" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<title>Cash</title>
<script type="module" src="/assets/build/cash.js"></script> <script type="module" src="/assets/build/cash.js"></script>
</head>
<body>
<header> <header>
<nav class="navbar navbar-expand-md navbar-dark bg-dark"> <nav class="navbar navbar-expand-md navbar-dark bg-dark">
@ -41,3 +62,7 @@
</div> </div>
</main> </main>
</body>
</html>

View File

@ -1,8 +1,26 @@
<script src="https://kit.fontawesome.com/cb81440751.js" crossorigin="anonymous"></script> <!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="images/logo.ico" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CV</title>
<script src="https://kit.fontawesome.com/cb81440751.js" crossorigin="anonymous"></script>
<!-- Import stylesheets in CSS3 --> <!-- Import stylesheets in CSS3 -->
<link rel="stylesheet" href="/assets/cv/stylesheets/style.css" type="text/css"> <link rel="stylesheet" href="/assets/cv/stylesheets/style.css" type="text/css">
<!-- HTML2PDF.js -->
<!-- Version 0.9.3 -->
<script defer src="/assets/cv/javascripts/html2pdf.v0.9.3.bundle.min.js"></script>
<!-- Main Javascript file -->
<script defer src="/assets/cv/javascripts/main.js"></script>
</head>
<body>
<header class="l-header" id="header"> <header class="l-header" id="header">
<!-- Nav menu --> <!-- Nav menu -->
<nav class="nav bd-container"> <nav class="nav bd-container">
@ -164,9 +182,6 @@
<i class="fa-solid fa-arrow-up scrolltop_icon"></i> <i class="fa-solid fa-arrow-up scrolltop_icon"></i>
</a> </a>
<!-- HTML2PDF.js --> </body>
<!-- Version 0.9.3 -->
<script src="/assets/cv/javascripts/html2pdf.v0.9.3.bundle.min.js"></script>
<!-- Main Javascript file --> </html>
<script src="/assets/cv/javascripts/main.js"></script>

View File

@ -1,23 +0,0 @@
<!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="images/logo.ico" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
{{#unless disableBootStrap}}
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
{{/unless}}
<title>{{title}}</title>
</head>
<body>
{{{body}}}
</body>
</html>

View File

@ -1,5 +1,23 @@
<script src="/assets/build/list.js"></script> <!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="images/logo.ico" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<title>List</title>
<script src="/assets/build/list.js"></script>
</head>
<body>
<header> <header>
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark"> <nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<div class="container-fluid"> <div class="container-fluid">
@ -50,3 +68,7 @@
</div> </div>
</div> </div>
</main> </main>
</body>
</html>

View File

@ -1,10 +1,30 @@
<!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="images/logo.ico" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<title>Nikola Petrov</title>
<link rel="stylesheet" href="/assets/main/1_0/assets/fontawesome/css/all.css"> <link rel="stylesheet" href="/assets/main/1_0/assets/fontawesome/css/all.css">
<link rel="stylesheet" href="/assets/main/1_0/css/intro.css"> <link rel="stylesheet" href="/assets/main/1_0/css/intro.css">
<link rel="stylesheet" href="/assets/main/1_0/css/styles.css"> <link rel="stylesheet" href="/assets/main/1_0/css/styles.css">
<script defer src="/assets/main/1_0/assets/WinBox/winbox.bundle.js"></script> <script defer src="/assets/main/1_0/assets/WinBox/winbox.bundle.js"></script>
<script defer src="/assets/main/1_0/js/main.js"></script> <script defer src="/assets/main/1_0/js/main.js"></script>
</head>
<body>
<section class="intro"> <section class="intro">
@ -31,16 +51,28 @@
<div class="row justify-content-md-center"> <div class="row justify-content-md-center">
<div class="col col-lg-2"> <div class="col col-lg-2">
<table class="centered"> <table class="centered">
<tr><th>Language</th></tr> <tr>
<tr><td>Slovenian</td></tr> <th>Language</th>
<tr><td>English</td></tr> </tr>
<tr>
<td>Slovenian</td>
</tr>
<tr>
<td>English</td>
</tr>
</table> </table>
</div> </div>
<div class="col-md-auto"> <div class="col-md-auto">
<table class="centered"> <table class="centered">
<tr><th>Programming languages</th></tr> <tr>
<tr><td>C/C++</td></tr> <th>Programming languages</th>
<tr><td>html/css/js/php</td></tr> </tr>
<tr>
<td>C/C++</td>
</tr>
<tr>
<td>html/css/js/php</td>
</tr>
</table> </table>
</div> </div>
</div> </div>
@ -50,18 +82,22 @@
<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><td> </tr>
<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> </div>
@ -165,11 +201,14 @@
<div class="container margin-top"> <div class="container margin-top">
<div class="row"> <div class="row">
<a href="/doc/CV.pdf" class="btn btn-info" download="Nikola_Petrov_CV">CV</a> <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> <a href="/doc/Certificate.pdf" class="btn btn-info"
download="Nikola_Petrov_electrotechnician_certificate">Electrotechnician certificate</a>
</div> </div>
</div> </div>
</div> </div>
</section> </section>
</body>
</html>

View File

@ -1,3 +1,13 @@
<!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="images/logo.ico" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Nikola Petrov</title>
<script defer src="/assets/main/2_0/js/script.js"></script> <script defer src="/assets/main/2_0/js/script.js"></script>
<link rel="stylesheet" href="/assets/main/2_0/css/style.css"> <link rel="stylesheet" href="/assets/main/2_0/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.googleapis.com">
@ -5,7 +15,9 @@
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
<script defer type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script> <script defer type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script defer nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script> <script defer nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</head>
<body>
<main> <main>
<aside class="sidebar" data-sidebar> <aside class="sidebar" data-sidebar>
<div class="sidebar-info"> <div class="sidebar-info">
@ -167,9 +179,11 @@
<section class="about-text"> <section class="about-text">
<p> <p>
I am currently an RIT student at FERI in Maribor and come from the beautiful city of Ljubljana. I am currently an RIT student at FERI in Maribor and come from the beautiful city of Ljubljana.
What really excites me is the opportunity to build systems that have a direct and positive impact on people's What really excites me is the opportunity to build systems that have a direct and positive impact on
people's
lives. lives.
I find great satisfaction in using my skills to create practical solutions that address real-world challenges. I find great satisfaction in using my skills to create practical solutions that address real-world
challenges.
</p> </p>
<p> <p>
@ -200,7 +214,8 @@
<h4 class="h4 service-item-title">Backend programming</h4> <h4 class="h4 service-item-title">Backend programming</h4>
<p class="service-item-text"> <p class="service-item-text">
Backend programming focuses on server-side development, handling data storage, processing, and business Backend programming focuses on server-side development, handling data storage, processing, and
business
logic to support the functionality of web and mobile applications logic to support the functionality of web and mobile applications
</p> </p>
</div> </div>
@ -350,3 +365,7 @@
</div> </div>
</main> </main>
</body>
</html>

View File

@ -1,3 +1,23 @@
<!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="images/logo.ico" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<title>User</title>
</head>
<body>
<div class="container"> <div class="container">
<form action="/user" method="post"> <form action="/user" method="post">
<div class="mb-3"> <div class="mb-3">
@ -43,3 +63,7 @@
</script> </script>
</div> </div>
</body>
</html>