45 lines
1.3 KiB
HTML
45 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
<title>Victor Vobis</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Victor Vobis</h1>
|
|
<p class="subtitle">Developer</p>
|
|
<nav>
|
|
<a href="#work">Work</a>
|
|
<a href="#about">About</a>
|
|
<a href="mailto:victor@victorvobis.org">Email</a>
|
|
<a href="https://git.victorvobis.org/victorvobis" target="_blank">Git</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<section id="work">
|
|
<h2>Projects</h2>
|
|
<a class="project-link" href="/minishell.html">
|
|
<div class="project">
|
|
<h3>Minishell</h3>
|
|
<p>A simple ash-like shell build from scratch in C.</p>
|
|
</div>
|
|
</a>
|
|
<a class="project-link" href="/minirt.html">
|
|
<div class="project">
|
|
<h3>MiniRT</h3>
|
|
<p>Raytracer, written in C, originally using libmlx (X11-wrapper) rewritten using Raylib.</p>
|
|
</div>
|
|
</a>
|
|
</section>
|
|
|
|
<section id="about">
|
|
<h2>About</h2>
|
|
<p></p>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|