site/templates/base.html
2024-11-14 18:38:05 +02:00

33 lines
632 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="/style.css" rel="stylesheet" />
<title>
{% if page.title %}
{{ page.title }}
{% else %}
{{ section.title }}
{% endif %}
</title>
</head>
<body>
<nav style="display: flex; justify-content: space-between; margin-bottom: 3rem;">
<a href="/">einsof.org</a>
<div style="display: flex; gap: 1rem;">
<a href="/blog/">blog</a>
<a href="/about/">about</a>
</div>
</nav>
{% block content %}
{% endblock %}
</body>
</html>