This repository has been archived on 2025-02-09. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
kyanite/templates/base.html

33 lines
1.2 KiB
HTML
Raw Normal View History

2023-02-04 02:23:51 -08:00
<!doctype html>
<html lang="en-CA">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>{{ settings.site_name }} - {% block title %}{{ title }}{% endblock %}</title>
2023-02-05 04:13:50 -08:00
<meta name="description" content="{% block description %} {% endblock %}" />
2023-02-04 02:23:51 -08:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2023-02-05 03:48:23 -08:00
{% match settings.site_additional_head %}
{% when Some with (site_additional_head) %}
{{ site_additional_head|safe }}
{% when Nome %}
{% endmatch %}
2023-02-04 02:23:51 -08:00
</head>
<body>
<h1>{{ settings.site_header }}</h1>
2023-02-04 02:23:51 -08:00
2023-02-04 21:21:52 -08:00
<ul class="primary-menu">
{% for entry in menu %}
2023-02-05 02:53:51 -08:00
<li><a href="{{ entry.referring_slug }}" class="menu-button">{{ entry.text }}</a></li>
2023-02-04 21:21:52 -08:00
{% endfor %}
</ul>
2023-02-04 02:23:51 -08:00
<hr />
<div id="content">
{% block content %}{% endblock %}
</div>
<hr />
2023-02-05 20:14:06 -08:00
<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>
2023-02-04 02:23:51 -08:00
</body>
</html>