72 lines
2.7 KiB
Twig
Executable File
72 lines
2.7 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 %}
|
|
">
|
|
<!-- Navigation-->
|
|
{# <nav class="navbar navbar-expand-lg bg-secondary text-uppercase fixed-top" id="mainNav">#}
|
|
{# <div class="container">#}
|
|
{# <a class="navbar-brand" href="/#page-top">{% trans %}menu.title{% endtrans %}</a>#}
|
|
{# <button class="navbar-toggler text-uppercase font-weight-bold bg-primary text-white rounded" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">#}
|
|
{# Menu#}
|
|
{# <i class="fas fa-bars"></i>#}
|
|
{# </button>#}
|
|
{# <div class="collapse navbar-collapse" id="navbarResponsive">#}
|
|
{# <ul class="navbar-nav ms-auto">#}
|
|
|
|
{# #}
|
|
{# <li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="/#about">About</a></li>#}
|
|
{# <li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="/#contact">Contact</a></li>#}
|
|
{# </ul>#}
|
|
{# </div>#}
|
|
{# </div>#}
|
|
|
|
|
|
{# </nav>#}
|
|
{% include 'default/login-choices.html.twig' %}
|
|
<!-- Portfolio Section-->
|
|
<section class="page-section portfolio" id="portfolio">
|
|
|
|
|
|
{% block navigation %}
|
|
{% endblock %}
|
|
<div id="bodyland">
|
|
{% 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>
|