30 lines
1.3 KiB
Twig
30 lines
1.3 KiB
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}Task Manager{% endblock %}</title>
|
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
{% block stylesheets %}{% endblock %}
|
|
</head>
|
|
<body class="bg-gray-50">
|
|
<div class="min-h-screen flex flex-col">
|
|
{% include '_menu.html.twig' %}
|
|
|
|
<main class="flex-grow container mx-auto px-4 py-8">
|
|
{% block body %}{% endblock %}
|
|
</main>
|
|
|
|
<footer class="bg-white border-t mt-auto">
|
|
<div class="container mx-auto px-4 py-6">
|
|
<p class="text-center text-gray-500">© {{ 'now'|date('Y') }} Tars AI</p>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
{% block javascripts %}{% endblock %}
|
|
</body>
|
|
</html>
|