49 lines
1.1 KiB
HTML
49 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link rel="stylesheet" href="/style.css" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
|
|
<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 %}
|
|
|
|
<footer>
|
|
<hr style="margin-top: 2rem; margin-bottom: 0.75rem;" />
|
|
|
|
<div style="display: flex; justify-content: space-between;">
|
|
<a href="/">einsof.org</a>
|
|
|
|
<div>
|
|
<span class="date">©</span>
|
|
<a href="https://creativecommons.org/public-domain/cc0/">CC0</a>
|
|
<span class="date">·</span>
|
|
<a href="https://opensource.org/license/0bsd">0BSD</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|