theme stuff

This commit is contained in:
fzorb 2025-05-16 08:16:58 +03:00
parent 6ebf324481
commit 542b0e862c
9 changed files with 63 additions and 17 deletions

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>{{page.title}} // fzorb.xyz</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="Schizophrenic ramblings">
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<div class="container">
{% include "nav.html" %}
<h1>{{page.title}}</h1>
<p>Written {{page.day}}.{{page.month}}.{{page.year}}</p>
{{page.content|safe}}
</div>
</body>
</html