blob: 6757d02404b6f4831a2e08dffaf3b7b7e244ad25 (
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
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="/style.css" rel="stylesheet" />
<link rel="preload" href="style.css" as="style" />
<title>{% block title %}4kb.net{% endblock title %}</title>
</head>
<body>
<nav>
<span>4kb.net</span>
<div>
<a href="/">Home</a>
<a href="/posts">Posts</a>
<a href="/log">Log</a>
</div>
</nav>
<hr />
<main>{% block content %} {% endblock %}</main>
<footer>
<hr />
<span>© 2024 Kleidi Bujari</span>
</footer>
</body>
</html>
|