mfw i accidentally commited from the static/pictures directory

This commit is contained in:
fzorb 2025-05-16 07:00:55 +03:00
parent 867d9e2277
commit 1189065cde
17 changed files with 160 additions and 0 deletions

28
templates/index.html Normal file
View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<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="index-container">
<div class="nav">
<a href="/posts/">Posts</a> - <a href="mailto:fzorb@fzorb.xyz">Email</a> - <a href="/pub.asc">PGP</a>
</div>
<h1>fzorb.xyz</h1>
<p>I'm fzorb. I am a person from Bucharest, Romania. I am passionate about many things: computers, urbanism, music, history and games. I'm not particularily interesting though. I do however write a few times a year on my <a href="/posts">blog</a>, so you could check that out I guess.</p>
<h3>Where to find me:</h3>
<ul>
<li>Telegram: <a href="https://t.me/fzorb">@fzorb</a></li>
<li>Signal: <a href="https://signal.me/#eu/p9Gze3TqviYDBB5fUl7dLplo12rMRAoXJ9X7pvR4NgTNRZ0fxxVMCbxAkbBnvRmJ">@fzorb.27</a></li>
<li>Last.fm: <a href="https://last.fm/user/fzorb">@fzorb</a></li>
</ul>
<img src="/pictures/potn.jpg" style="width: 100%;">
</div>
<p style="text-align: center; font-size: 12px;"><i>Unless noted otherwise, all work on this website is licenced under CC0</i></p>
</body>
</html

0
templates/page.html Normal file
View file

9
templates/section.html Normal file
View file

@ -0,0 +1,9 @@
{% for year, posts in section.pages | group_by(attribute="year") %}
<h2>{{ year }}</h2>
<ul>
{% for post in posts %}
<li><a href="{{ post.permalink }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}