From bd2faca3dea54fb618b848d702a7f2f1694ead72 Mon Sep 17 00:00:00 2001 From: Dejvino Date: Thu, 21 May 2026 12:54:21 +0200 Subject: [PATCH] Drop summary --- index.php | 8 -------- style.css | 2 -- 2 files changed, 10 deletions(-) diff --git a/index.php b/index.php index 74b1fe2..b579681 100644 --- a/index.php +++ b/index.php @@ -7,7 +7,6 @@ $cvData = json_decode(file_get_contents(__DIR__ . '/cv.json'), true); $name = $cvData['name'] ?? ''; $headline = $cvData['headline'] ?? ''; -$summary = $cvData['summary'] ?? ''; $role_summary = $cvData['role_summary'] ?? ''; $location = $cvData['location'] ?? ''; $photo_file = $cvData['photo'] ?? ''; @@ -189,13 +188,6 @@ $cv_skills = $cvData['skills'] ?? []; - -
-

Summary

-

-
- -

Selected Work

diff --git a/style.css b/style.css index 4d236a1..de088f3 100644 --- a/style.css +++ b/style.css @@ -124,7 +124,6 @@ body { } .hero { grid-column: span 3; } .hiring-toggle { grid-column: span 3; } - .summary { grid-column: span 3; } .selected-work { grid-column: span 3; } .cv-container { grid-column: span 3; } .experience { grid-column: span 3; } @@ -143,7 +142,6 @@ body { margin-right: 16px !important; } .hero { transform: rotate(0.1deg); } - .summary { transform: translate(-2px, 2px) rotate(-0.3deg); } .selected-work { transform: translate(2px, -2px) rotate(-0.2deg); } .hiring-toggle { transform: translate(-2px, 3px) rotate(0.2deg); } .experience { transform: translate(3px, -2px) rotate(-0.2deg); }