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 {
|
2024-03-18 23:04:48 +01:00
|
|
|
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">
|
2024-03-20 20:49:22 +01:00
|
|
|
<a class="hover:bg-stone-400" href="/">Summary</a>
|
|
|
|
|
<a class="hover:bg-stone-400" href="/accounts">Accounts</a>
|
|
|
|
|
<a class="hover:bg-stone-400" href="/classifiers">Classifiers</a>
|
2024-02-19 23:51:18 +01:00
|
|
|
</aside>
|
2024-03-18 23:04:48 +01:00
|
|
|
<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>
|