caisse-bliss/templates/base.html.twig

63 lines
1.9 KiB
Twig
Raw Normal View History

2025-02-09 16:10:35 +01:00
{% trans_default_domain 'messages' %}
2025-02-09 15:03:04 +01:00
<!DOCTYPE html>
<html>
<head>
2025-02-13 18:14:53 +01:00
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="Logiciel de caisse" />
<meta name="author" content="Tykayn" />
2025-02-09 16:10:35 +01:00
<title>{% block title %} {% trans %}menu.title{% endtrans %} - Fiche de compte dynamique{% endblock %}</title>
2025-02-09 15:03:04 +01:00
{% block stylesheets %}
2025-02-09 16:10:35 +01:00
{{ encore_entry_link_tags('app') }}
2025-02-09 15:03:04 +01:00
{% endblock %}
{% block javascripts %}
2025-02-09 16:10:35 +01:00
{{ encore_entry_script_tags('app') }}
2025-02-09 15:03:04 +01:00
{% endblock %}
</head>
2025-02-14 17:56:44 +01:00
<body id="page-top" class="
{% if app.user %}
logged
{% endif %}
">
2025-02-14 17:56:44 +01:00
{% include 'default/login-choices.html.twig' %}
2025-02-13 18:14:53 +01:00
<!-- Portfolio Section-->
<section class="page-section portfolio" id="portfolio">
2025-02-09 16:10:35 +01:00
{% block navigation %}
{% endblock %}
<div id="bodyland">
{% for label, messages in app.flashes %}
{% for message in messages %}
<div class="alert alert-{{ label }} alert-dismissible fade show" role="alert">
{{ message }}
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
{% endfor %}
{% endfor %}
2025-02-09 16:10:35 +01:00
{% block bigMain %}
{% include 'default/header.html.twig' %}
2025-02-14 14:17:23 +01:00
{% include 'logged/nav.html.twig' %}
2025-02-09 16:10:35 +01:00
<div class="container">
<div class="row">
<div class="main-container-box col col-xs-12 col-sm-9 col-sm-offset-3 col-md-9 col-md-offset-3 col-lg-offset-3">
{% block body %}
{% endblock %}
</div>
</div>
2025-02-09 16:10:35 +01:00
</div>
{% include 'default/footer.html.twig' %}
{% endblock %}
2025-02-13 18:14:53 +01:00
</section>
</body>
2025-02-09 15:03:04 +01:00
</html>