= $job['title'] ?>
= $job['org'] ?>
= $job['desc'] ?>
"https://wp.dejvino.com/", "~/projects" => "https://projects.dejvino.com/", "~/code" => "https://git.dejvino.cz/", ]; $hardware_info = $cvData['hardware_info'] ?? ''; $extra_contact_links = $cvData['contact_links'] ?? []; /** * CV Data */ // Map experience to expected structure $cv_experience = array_map(function($e){ return [ 'title' => $e['title'] ?? '', 'org' => $e['organization'] ?? '', 'date' => $e['date'] ?? '', 'desc' => $e['description'] ?? '', ]; }, $cvData['experience'] ?? []); // Map education to expected structure $cv_education = array_map(function($e){ return [ 'title' => $e['degree'] ?? '', 'org' => $e['institution'] ?? '', 'date' => $e['date'] ?? '', 'desc' => $e['thesis'] ?? '', ]; }, $cvData['education'] ?? []); // Keep skills categories as provided $cv_skills = $cvData['skills'] ?? []; /** * Page design: * - clean and simple, human-maintaninable * - no dependencies * - single-file website */ ?>
= $subtitle ?>
= $para ?>
= $hardware_info ?>