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

30 lines
No EOL
1.2 KiB
HTML

<!doctype html>
<html lang="en-CA">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Evie / eviee / uwueviee - {% block title %}{{ title }}{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/static/css/sakura-pink.css" media="screen" type="text/css">
<link rel="stylesheet" href="/static/css/sakura-vader.css" media="screen and (prefers-color-scheme: dark)" type="text/css">
<link rel="stylesheet" href="/static/css/meow.css" type="text/css">
</head>
<body>
<h1>🐈 Evie / eviee / uwueviee</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://git.gaycatgirl.sex/evie/kyanite">Kyanite</a>, Made with 🏳️‍⚧️💜 and Rust. <i>© {{ year }} Evie Viau</i></p>
</body>
</html>