39 lines
No EOL
938 B
HTML
39 lines
No EOL
938 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>lynxize</title>
|
|
<meta name="description" content="Very WIP personal site v2">
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="color-scheme" content="dark light" />
|
|
<link rel="stylesheet" type="text/css" href="/main.css">
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<a href="/">/home</a>
|
|
<a href="/about">/about</a>
|
|
<a href="/blog">/blog</a>
|
|
<a href="/stuff">/stuff</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<div class="content">
|
|
{% block content %} {% endblock %}
|
|
</div>
|
|
|
|
<footer>
|
|
<div>
|
|
<hr>
|
|
© lynxize 2025
|
|
-
|
|
<a href="https://github.com/lynxize/">GitHub</a>
|
|
|
|
|
<a href="https://bsky.app/profile/lynxize.dev">Bluesky</a>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html> |