add portfolio

This commit is contained in:
Nikola Petrov 2024-01-26 22:06:19 +01:00
parent 07cd4bff3a
commit 2b7caccad4
8 changed files with 48 additions and 13 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

View File

@ -4,29 +4,64 @@ var router = express.Router();
/* GET home page. */ /* GET home page. */
router.get('/', function (req, res, next) { router.get('/', function (req, res, next) {
const categorys = ["web development", "applications", "web design"]; const categorys = ["cpp", "games", "js", "cs"];
const entry = [ const entry = [
{ {
category: categorys[0], category: categorys[0],
img: "/images/logo.png", img: "/images/projects/Advent_Of_Code_Logo.jpg",
title: "Title 0", title: "Advent of code",
des: "desc", des: "My solutions for AOC",
link: "#" link: "https://gitlab.com/homep/advent_of_code"
}, },
{ {
category: categorys[1], category: categorys[1],
img: "/images/logo.png", img: "/images/projects/password_manager.jpeg",
title: "Title 1", title: "Password manager",
des: "desc", des: "CLI app",
link: "#" link: "https://gitlab.com/homep/password_manager"
}, },
{ {
category: categorys[2], category: categorys[3],
img: "/images/projects/media_player.jpeg",
title: "Media player",
des: "WPF",
link: "https://gitlab.com/school221/semester_3/uporabniski_vmesniki"
},
{
category: categorys[3],
img: "/images/logo.png", img: "/images/logo.png",
title: "Title 2", title: "Server",
des: "desc", des: "Everything running on my server",
link: "#" link: "https://gitlab.com/homep/server"
},
{
category: categorys[3],
img: "/images/projects/projektna_naloga.jpeg",
title: "Highway Tracker",
des: "School project",
link: "https://gitlab.com/school221/projektna_naloga"
},
{
category: categorys[3],
img: "/images/projects/bitshift.jpeg",
title: "BitShifters",
des: "unity",
link: "https://gitlab.com/school221/semester_4/razvoj_programskih_sistemov/bitshifters"
},
{
category: categorys[3],
img: "/images/projects/tetris.jpeg",
title: "Tetris",
des: "WPF",
link: "https://gitlab.com/school221/semester_4/razvoj_programskih_sistemov/tetrisrps"
},
{
category: categorys[3],
img: "/images/projects/games.jpeg",
title: "Games",
des: "java",
link: "https://gitlab.com/school221/semester_5/uvod_v_razvoj_racunalniskih_iger"
} }
]; ];