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

59
public/css/main.css Normal file
View file

@ -0,0 +1,59 @@
@font-face {
font-family: mononoki;
src: url("/fonts/mononoki-Regular.ttf");
font-weight: regular;
}
@font-face {
font-family: mononoki;
src: url("/fonts/mononoki-Bold.ttf");
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: mononoki;
src: url("/fonts/mononoki-Italic.ttf");
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: mononoki;
src: url("/fonts/mononoki-BoldItalic.ttf");
font-weight: bold;
font-style: italic;
}
body {
background-size: 10px 10px;
background-color: #282828;
background-image:
linear-gradient(to right, #3c3836 1px, transparent 1px),
linear-gradient(to bottom, #3c3836 1px, transparent 1px);
color: #f9f5d7;
font-family: mononoki, monospace;
}
.index-container {
max-width: 500px;
margin: 0 auto;
background-color: #1d202199;
padding: 16px;
}
.nav {
text-align: center;
}
a {
color: #8ec07c
}
.index-container h1 {
margin-bottom: 0;
margin-top: none;
text-align: center;
display: block;
}

5
public/css/mononoki.css Normal file
View file

@ -0,0 +1,5 @@
@font-face {
font-family: mononoki;
src: url("/fonts/mononoki-Regular.ttf");
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
public/pictures/potn.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 KiB

59
static/css/main.css Normal file
View file

@ -0,0 +1,59 @@
@font-face {
font-family: mononoki;
src: url("/fonts/mononoki-Regular.ttf");
font-weight: regular;
}
@font-face {
font-family: mononoki;
src: url("/fonts/mononoki-Bold.ttf");
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: mononoki;
src: url("/fonts/mononoki-Italic.ttf");
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: mononoki;
src: url("/fonts/mononoki-BoldItalic.ttf");
font-weight: bold;
font-style: italic;
}
body {
background-size: 10px 10px;
background-color: #282828;
background-image:
linear-gradient(to right, #3c3836 1px, transparent 1px),
linear-gradient(to bottom, #3c3836 1px, transparent 1px);
color: #f9f5d7;
font-family: mononoki, monospace;
}
.index-container {
max-width: 500px;
margin: 0 auto;
background-color: #1d202199;
padding: 16px;
}
.nav {
text-align: center;
}
a {
color: #8ec07c
}
.index-container h1 {
margin-bottom: 0;
margin-top: none;
text-align: center;
display: block;
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

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 %}