2024-03-16 15:45:32 +00:00
|
|
|
<!DOCTYPE html>
|
2024-03-24 05:28:21 +00:00
|
|
|
<html lang="en" class="h-full bg-white">
|
2024-03-16 15:45:32 +00:00
|
|
|
{% include "head.html" %}
|
2024-03-24 05:28:21 +00:00
|
|
|
<body class="h-full">
|
2024-03-16 15:45:32 +00:00
|
|
|
|
2024-05-21 12:59:04 +00:00
|
|
|
<div>
|
|
|
|
{% set current_page = "home" %}
|
|
|
|
{% include "components/sidebar.html" %}
|
2024-03-24 05:28:21 +00:00
|
|
|
|
2024-05-21 12:59:04 +00:00
|
|
|
<main class="py-10 pl-72">
|
|
|
|
<div class="px-8">
|
|
|
|
Main content.
|
2024-03-24 05:28:21 +00:00
|
|
|
</div>
|
|
|
|
</main>
|
2024-05-21 12:59:04 +00:00
|
|
|
|
2024-03-24 05:28:21 +00:00
|
|
|
|
|
|
|
<script type="text/javascript" src="/static/main.js"></script>
|
2024-03-16 15:45:32 +00:00
|
|
|
</body>
|
|
|
|
</html>
|