<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Invoice Manager</title>
<link href="/styles.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
{% block stylesheets %}
<style>
body {
font-family: 'Source Sans Pro', sans-serif;
}
</style>
{% endblock %}
{% block javascripts %}{% endblock %}
</head>
{% block full_body %}
<body class="bg-gray-100">
<div class="flex h-screen" x-data="{ open: false, pdfSrc: '', loading: false }">
<aside class="h-screen sticky top-0 bg-teal-900 text-white p-2">
{% block sidebar %}{% include "partials/sidebar.html.twig" %}{% endblock %}
</aside>
<main class="flex-1 flex flex-col p-8 bg-gray-100">
{% block body %}{% endblock %}
</main>
{% block extra_body %}{% endblock %}
</div>
</body>
{% endblock %}
</html>