27 lines
987 B
HTML
27 lines
987 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Gabriel Kaszewski</title>
|
|
<link rel="icon" href="/static/images/favicon.webp" type="image/x-icon" />
|
|
<link rel="stylesheet" href="/static/css/main.css" />
|
|
<script defer data-domain="gabrielkaszewski.dev"
|
|
src="https://plausible.gabrielkaszewski.dev/js/script.file-downloads.outbound-links.js"></script>
|
|
</head>
|
|
|
|
<body class="bg-gray-800 scroll-smooth">
|
|
<div class="flex flex-col h-full min-h-screen text-white">
|
|
{% include "website/components/navbar.html" %}
|
|
<div
|
|
class="flex flex-col items-center justify-center w-full h-full gap-4"
|
|
>
|
|
{% block content %} {% endblock content %}
|
|
</div>
|
|
<span class="flex-1"></span>
|
|
{% include "website/components/footer.html" %}
|
|
</div>
|
|
</body>
|
|
</html>
|