This repository has been archived on 2025-02-09. You can view files and clone it, but cannot push or open issues or pull requests.
kyanite/templates/base.html

35 lines
No EOL
1.3 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>{{ settings.site_name }} - {% block title %}{% endblock %}</title>
<meta name="description" content="{% block description %}{% endblock %}" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
{% block opengraph %}{% endblock %}
<meta property="og:site_name" content="{{ settings.site_name }}" />
{% match settings.site_additional_head %}
{% when Some with (site_additional_head) %}
{{ site_additional_head|safe }}
{% when Nome %}
{% endmatch %}
</head>
<body>
<h1>{{ settings.site_header }}</h1>
<ul class="primary-menu">
{% for entry in menu %}
<li><a href="{{ entry.referring_slug }}" class="menu-button">{{ entry.text }}</a></li>
{% endfor %}
</ul>
<hr />
<div id="content">
{% block content %}{% endblock %}
</div>
<hr />
<p class="footer">Proudly powered by <a href="https://kyanite.eviee.gay/">Kyanite</a>, made with 🏳️‍⚧️💜 and Rust. <i>© {{ year }} {{ settings.site_owner }}</i></p>
</body>
</html>