From 0ad194041c48f52f0c2e3d1d9d494b4cca71bb23 Mon Sep 17 00:00:00 2001
From: Dejvino
Date: Mon, 18 May 2026 20:52:34 +0200
Subject: [PATCH] Improved style and added base CV
---
index.php | 81 +++++++++++++++++++++++-
style.css | 180 ++++++++++++++++++++++++++++++++++++++----------------
2 files changed, 208 insertions(+), 53 deletions(-)
diff --git a/index.php b/index.php
index a3082d9..7865a8b 100644
--- a/index.php
+++ b/index.php
@@ -19,10 +19,35 @@ $nav_links = [
"~/blog" => "https://wp.dejvino.com/",
"~/projects" => "https://projects.dejvino.com/",
"~/code" => "https://git.dejvino.cz/",
+ "~/cv" => "#",
];
$hardware_info = "Playing the mandolin, mountain biking, 3D printing and tinkering.";
+/**
+ * CV Data
+ */
+$cv_experience = [
+ [
+ "title" => "Senior Software Engineer / Architect",
+ "org" => "Self-Employed / Various Projects",
+ "date" => "2018 - Present",
+ "desc" => "Designing and implementing scalable backend architectures, focusing on performance, observability, and clean code principles."
+ ],
+ [
+ "title" => "Full-stack Developer",
+ "org" => "Tech Innovations s.r.o.",
+ "date" => "2014 - 2018",
+ "desc" => "Built complex web applications using PHP and modern JavaScript frameworks, optimized database performance."
+ ]
+];
+
+$cv_education = [
+ [ "title" => "Master of Computer Science", "org" => "Technical University", "date" => "2014", "desc" => "" ]
+];
+
+$cv_skills = ["PHP", "Go", "Rust", "Docker", "Kubernetes", "PostgreSQL", "Redis", "Linux", "Git"];
+
/**
* Page design:
* - clean and simple, human-maintaninable
@@ -81,8 +106,10 @@ $hardware_info = "Playing the mandolin, mountain biking, 3D printing and tinker
@@ -98,6 +125,46 @@ $hardware_info = "Playing the mandolin, mountain biking, 3D printing and tinker
Contact email: uncovering...
+
+
+
+ Experience
+
+
+
+
= $job['org'] ?>
+
= $job['desc'] ?>
+
+
+
+
+
+ Skills
+
+
+ = $skill ?>
+
+
+
+
+
+ Education
+
+
+
+
= $edu['org'] ?>
+
+
= $edu['desc'] ?>
+
+
+
+