bin/templates/base.html
2025-05-29 17:14:23 +03:00

24 lines
762 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="https://cdn.wzray.com/web/favicon.ico">
<link rel="stylesheet" href="https://cdn.wzray.com/web/fonts/mononoki.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>bin</title>
<style>
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
height: 100vh;
background: #101010;
color: #c6c6c6;
display: flex;
}
body, code, textarea { font-family: mononoki; }
{% block styles %}{% endblock styles %}
</style>
{% block head %}{% endblock head %}
</head>
<body>{% block content %}{% endblock content %}</body>
</html>