29 lines
1.2 KiB
Twig
29 lines
1.2 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">
|
|
{% block stylesheets %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<div class="container py-4">
|
|
<header class="pb-3 mb-4 border-bottom">
|
|
<a href="{{ path('app_task_index') }}" class="d-flex align-items-center text-dark text-decoration-none">
|
|
<span class="fs-4">Task Manager</span>
|
|
</a>
|
|
</header>
|
|
|
|
{% block body %}{% endblock %}
|
|
|
|
<footer class="pt-3 mt-4 text-muted border-top">
|
|
© {{ 'now'|date('Y') }} Task Manager
|
|
</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>
|