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

25 lines
No EOL
908 B
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-vader.css" type="text/css">
<link rel="stylesheet" href="static/css/meow.css" type="text/css">
</head>
<body>
<h1>🐈 Evie / eviee / uwueviee</h1>
{% block menus %}{% endblock %}
<hr />
<div id="content">
{% block content %}{% endblock %}
</div>
<hr />
<p class="footer">Made with 🏳️‍⚧️💜 and Rust. Check out the source <a href="https://git.gaycatgirl.sex/evie/personal-site">here</a>. © {{ year }} Evie Viau</p>
</body>
</html>