website/templates/base.html
2024-11-21 19:26:14 -07:00

46 lines
No EOL
1.3 KiB
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>
</nav>
</header>
<div id="new-site-warning">
<b>Hey!</b> This is a new version of my site rewritten from scratch!
I still don't really know what I'm doing with web dev, and this is still <i>very</i> WIP.
Stuff is still very broken/incomplete relative to the old site, but I'm working on it! (Hopefully)
</div>
<div class="content">
{% block content %} {% endblock %}
</div>
<footer>
<div>
<hr>
&copy lynxize 2024
-
<a href="https://github.com/lynxize/">GitHub</a>
|
<a rel="me" href="https://mastodon.lynxize.dev/@emilia">Mastodon</a>
|
<a href="https://bsky.app/profile/lynxize.dev">Bluesky</a>
</div>
</footer>
</body>
</html>