This commit is contained in:
2025-03-20 04:04:23 +01:00
parent 7fecbef90b
commit 4cb32b98d6
48 changed files with 1126 additions and 454 deletions

34
zola/templates/base.html Normal file
View File

@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{% block title %}Gabriel Kaszewski{% endblock %}</title>
<link rel="stylesheet" href="/css/main.css" />
</head>
<body>
<main
class="w-full h-full min-h-screen flex flex-col items-center justify-center bg-[url('/img/backgrounds/background2.jpg')] bg-cover bg-center"
>
<div
class="w-full max-w-[980px] max-h-[930px] flex-1 flex flex-col glass-sm rounded-2xl rounded-br-none border-midnight border-[2px]"
>
{% include "header.html" %}
<section
class="grid grid-cols-6 w-full h-full flex-1 gap-8 overflow-y-auto"
>
{% include "sidebar.html" %}
<section
class="col-span-4 flex flex-col px-8 pt-4 gap-4 overflow-y-auto"
>
{% block content %}
<span class="flex-1"></span>
{% endblock %} {% include "footer.html" %}
</section>
</section>
</div>
</main>
</body>
</html>