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-13 18:14:53 +01:00
|
|
|
<body id="page-top">
|
|
|
|
<!-- 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>
|
|
|
|
<!-- Masthead-->
|
|
|
|
<header class="masthead bg-primary text-white text-center">
|
|
|
|
<div class="container d-flex align-items-center flex-column">
|
|
|
|
<!-- Masthead Avatar Image-->
|
|
|
|
<img class="masthead-avatar mb-5" src="assets/img/avataaars.svg" alt="..." />
|
|
|
|
<!-- Masthead Heading-->
|
|
|
|
<h1 class="masthead-heading text-uppercase mb-0">Caisse Bliss</h1>
|
|
|
|
<!-- Icon Divider-->
|
|
|
|
<div class="divider-custom divider-light">
|
|
|
|
<div class="divider-custom-line"></div>
|
|
|
|
<div class="divider-custom-icon"><i class="fas fa-star"></i></div>
|
|
|
|
<div class="divider-custom-line"></div>
|
|
|
|
</div>
|
|
|
|
<!-- Masthead Subheading-->
|
|
|
|
<p class="masthead-subheading font-weight-light mb-0">Logiciel de caisse pour petits commerces</p>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<!-- Portfolio Section-->
|
|
|
|
<section class="page-section portfolio" id="portfolio">
|
|
|
|
|
2025-02-09 16:10:35 +01:00
|
|
|
|
|
|
|
{% block navigation %}
|
|
|
|
{% endblock %}
|
|
|
|
<div id="bodyland">
|
|
|
|
{% 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="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 %}
|
2025-02-13 18:14:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
</body>
|
|
|
|
|
2025-02-09 15:03:04 +01:00
|
|
|
</html>
|