blob: 8f49bb2fef8d1860537f65fe11ef55caed4910f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{% block title %}kleidi.ca{% endblock title %}</title>
<link href="/theme.css" rel="stylesheet" />
{% block head%}{% endblock head %}
</head>
<body>
<header
style="
margin: 3em 0 3em 0;
display: flex;
gap: 8px;
flex-direction: column;
font-family: monospace;
"
>
<span>
Kleidi Bujari <<a href="mailto:mail@4kb.net">mail@4kb.net</a>>
</span>
<nav style="display: flex; gap: 8px">
<span><a href="/">kleidi.ca</a> |</span>
<a href="/about">about</a>
<a target="_blank" href="https://github.com/kbujari">github</a>
</nav>
</header>
<main>{% block content %} {% endblock %}</main>
</body>
</html>
|