63 lines
1.9 KiB
Twig
Executable File
63 lines
1.9 KiB
Twig
Executable File
{% trans_default_domain 'messages' %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<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" />
|
|
<title>{% block title %} {% trans %}menu.title{% endtrans %} - Fiche de compte dynamique{% endblock %}</title>
|
|
{% block stylesheets %}
|
|
{{ encore_entry_link_tags('app') }}
|
|
{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
{{ encore_entry_script_tags('app') }}
|
|
{% endblock %}
|
|
</head>
|
|
<body id="page-top" class="
|
|
{% if app.user %}
|
|
logged
|
|
{% endif %}
|
|
">
|
|
|
|
{% include 'default/login-choices.html.twig' %}
|
|
<!-- Portfolio Section-->
|
|
<section class="page-section portfolio" id="portfolio">
|
|
|
|
|
|
{% 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 %}
|
|
|
|
{% block bigMain %}
|
|
|
|
{% include 'default/header.html.twig' %}
|
|
{% include 'logged/nav.html.twig' %}
|
|
|
|
<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>
|
|
</div>
|
|
{% include 'default/footer.html.twig' %}
|
|
{% endblock %}
|
|
|
|
|
|
</section>
|
|
</body>
|
|
|
|
</html>
|