Drop summary

This commit is contained in:
Dejvino 2026-05-21 12:54:21 +02:00
parent 0d97902b40
commit bd2faca3de
2 changed files with 0 additions and 10 deletions

View File

@ -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'] ?? [];
</section>
<?php if ($summary): ?>
<section class="card summary">
<h2>Summary</h2>
<p><?= $summary ?></p>
</section>
<?php endif; ?>
<?php if ($highlights): ?>
<section class="card selected-work">
<h2>Selected Work</h2>

View File

@ -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); }