36 lines
No EOL
887 B
HTML
36 lines
No EOL
887 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>
|
|
<p>placeholder title lol</p>
|
|
<nav>
|
|
<a href="/">home</a>
|
|
<a href="/about">about</a>
|
|
<a href="/blog">blog</a>
|
|
<a href="/stuff">stuff</a>
|
|
</nav>
|
|
<link rel="alternate" type="application/atom+xml" title="RSS" href="/blog/atom.xml">
|
|
</header>
|
|
|
|
<div class="content">
|
|
{% block content %} {% endblock %}
|
|
</div>
|
|
|
|
<footer>
|
|
<div>
|
|
© lynxize 2025
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html> |