74 lines
2.7 KiB
PHP
74 lines
2.7 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>www.dejvino.cz</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="David Hrdina Němeček - Professional Software Developer">
|
|
<meta name="author" content="David Hrdina Němeček">
|
|
<style>
|
|
<?php
|
|
/* Cyberpunk Identity: Single-payload delivery.
|
|
Internal logic is processed server-side to minimize client overhead. */
|
|
include 'style.css';
|
|
?>
|
|
</style>
|
|
<link rel="shortcut icon" href="favicon.ico">
|
|
</head>
|
|
<body>
|
|
|
|
<main class="bento-grid">
|
|
<section class="card profile">
|
|
<?php
|
|
$avatarBase64 = base64_encode(file_get_contents('me.jpg'));
|
|
?>
|
|
<img src="data:image/jpeg;base64,<?= $avatarBase64 ?>" alt="David Hrdina Němeček" class="avatar" />
|
|
<div class="header-text">
|
|
<p class="greeting-mono"><span>[</span><?php $hour = date('H');
|
|
if ($hour < 12) echo "SYSTEM_INIT_DAWN";
|
|
elseif ($hour < 18) echo "SYSTEM_INIT_DAY";
|
|
else echo "SYSTEM_INIT_DUSK";
|
|
?><span>]</span></p>
|
|
<h1>David Hrdina Němeček</h1>
|
|
<p class="subtitle">Full-Stack Architect & Open Source Contributor</p>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="card about">
|
|
<h2>System_Info</h2>
|
|
<p>Full-stack developer focused on high-performance systems and minimalist architecture.</p>
|
|
<p>Specializing in turning complex requirements into elegant, maintainable code.</p>
|
|
</section>
|
|
|
|
<section class="card links">
|
|
<h2>Navigation</h2>
|
|
<ul class="link-grid">
|
|
<li><a href="https://wp.dejvino.com/"><span>~/blog</span></a></li>
|
|
<li><a href="https://projects.dejvino.com/"><span>~/projects</span></a></li>
|
|
<li><a href="https://git.dejvino.cz/"><span>~/code</span></a></li>
|
|
<li><a href="https://www.dejvino.cz/"><span>~/personal</span></a></li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section class="card interests">
|
|
<h2>Hardware</h2>
|
|
<p>Mandolin, Mountain Biking, and tuning my MX-5.</p>
|
|
</section>
|
|
|
|
<section class="card contact">
|
|
<h2>Remote_Access</h2>
|
|
<p class="mono-addr">
|
|
Reach out via email: <span id="contact-mail">uncovering...</span>
|
|
</p>
|
|
</section>
|
|
</main>
|
|
|
|
<script>
|
|
(p => {
|
|
const a = `${p}@dejvino.cz`;
|
|
document.getElementById("contact-mail").innerHTML = `<a href="mailto:${a}">${a}</a>`;
|
|
})('david');
|
|
</script>
|
|
</body>
|
|
</html>
|