nixhacks.net/layouts/base.j2
2022-08-07 14:03:38 +03:00

62 lines
2.2 KiB
Django/Jinja
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/normalize-8.0.1.css">
<link rel="stylesheet" href="assets/css/pygments/{{ pygments_theme }}.css">
<link rel="stylesheet" href="assets/css/html5_polyglot/math.css">
<link rel="stylesheet" href="assets/css/restructuredtext.css">
<link rel="stylesheet" href="assets/css/custom.css">
<title>{{ page_title }} | {{ site_title }}</title>
</head>
<body>
<header>
<p>
{% if posts %}
{{ site_title }}
{% else %}
<a href="/">{{ site_title }}</a> / {{ page_title }}</p>
{% endif %}
</p>
</header>
{% block content %}{% endblock %}
<footer>
<p>
<span>- - -</span>
</p>
<p>
<a href="/">home</a> |
<a href="/projects">projects</a> |
<a href="https://git.nxhs.cloud/">code</a> |
<a href="/kb/">knowledge base</a> |
<a href="/writing">writing</a> |
<a href="/cgi-bin/ip.cgi">my ip</a>
</p>
<h3>About</h3>
<p>
Ещё один сайт про cисадмиство и программирование.
Пишу про софт, GNU/Linux и на смежные айтишные темы.
</p>
<p>
Copyright © 2021-2022 Материалы и исходные коды программ, представленные
на этом сайте, если не указано иное, распространяются по лицензии
<a href="https://creativecommons.org/publicdomain/zero/1.0/deed.en"
target="_blank">CC0 1.0</a>.
Вы можете свободно копировать и использовать их.
</p>
</footer>
</body>
</html>