accounters/templates/base.html

39 lines
975 B
HTML
Raw Normal View History

2024-02-19 23:51:18 +01:00
<!doctype html>
<html>
<head>
<title>{% block title %}{% endblock title %}</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="/static/styles.css">
<style>
html, body {
height: 100%;
margin: 0;
background:
}
.sidebar {
width: 12rem;
2024-02-19 23:51:18 +01:00
}
.sidebar a {
padding: 0.5rem;
border-radius: 3px;
}
</style>
</head>
<body>
<div class="flex h-full">
<aside class="sidebar bg-stone-300 p-4 flex flex-col">
<a class="hover:bg-stone-400" href="/">Start</a>
<a class="hover:bg-stone-400" href="/rules">Rules</a>
<a class="hover:bg-stone-400" href="/categories">Categories</a>
2024-02-19 23:51:18 +01:00
</aside>
<div class="p-4 grow h-full overflow-auto">
2024-02-19 23:51:18 +01:00
{% block body %}
{% endblock body %}
</div>
</div>
</body>
</html>