2023-06-08 11:14:18 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="pl">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2023-09-15 06:44:22 -05:00
|
|
|
<meta name="description" content="sadorro's personal website!">
|
2023-06-08 11:14:18 -05:00
|
|
|
<link rel="shortcut icon" href="logo.png">
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
<script defer src="script.js"></script>
|
|
|
|
<title>sador.dev - projekty</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="content">
|
|
|
|
<h1>Sador</h1>
|
|
|
|
<button onclick="toggleTheme()">Zmień motyw</button>
|
2023-09-15 06:44:22 -05:00
|
|
|
<button><a href="/">Powrót</a></button>
|
2023-06-08 11:14:18 -05:00
|
|
|
<h4>Moje projekty</h4>
|
|
|
|
<div id="projects">
|
|
|
|
<div class="project-card">
|
|
|
|
<img src="thumbnails/zine.png" alt="Zine thumbnail"/>
|
|
|
|
<div class="description">
|
|
|
|
<h3>Zine</h3>
|
2023-09-15 02:15:22 -05:00
|
|
|
<p>Mój własny bot na platformę Guilded napisany w języku Rust.</p>
|
2023-06-08 11:14:18 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="project-card">
|
|
|
|
<img src="thumbnails/website.png" alt="Website thumbnail"/>
|
|
|
|
<div class="description">
|
|
|
|
<h3>Personalna strona</h3>
|
|
|
|
<p>Moja własna strona internetowa, ta, którą teraz przeglądasz.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|