templates/front/_partials/footer.html.twig line 1

  1. <footer class="bg-dark py-5" style="padding-bottom: 0px!important;">
  2.     <div class="container">
  3.         <div class="row justify-content-center">
  4.             <div class="col-lg-7 mb-3">
  5.                 <div class="text-center">
  6.                     <a class="logo logo-footer" href="#home">
  7.                         <img src="/front/images/logo-h.png" height="56" alt="">
  8.                         {# <h3 style="font-weight: 700;" class="mt-14 text-white">
  9.                             <span style="color: #950853"></span>Clever Nursery
  10.                         </h3> #}
  11.                     </a>
  12.                     <p class="text-muted para-desc mx-auto mt-3">
  13.                         {% trans %}
  14.                         Clever Nursery (La crèche électronique) est une plateforme qui vous aide à organiser vos tâches
  15.                         quotidiennes au sein de votre crèche de manière simple et flexible, en mettant à votre
  16.                         disposition un ensemble d'outils qui vous faciliteront la vie.
  17.                         {% endtrans %}
  18.                     </p>
  19.                     <ul class="list-unstyled social-icon social mb-0 mt-4">
  20.                         <li class="list-inline-item">
  21.                             <a href="https://www.facebook.com/clevernursery" class="rounded" target="_blank">
  22.                                 <i data-feather="facebook" class="fea icon-sm fea-social"></i>
  23.                             </a>
  24.                         </li>
  25.                         <li class="list-inline-item">
  26.                             <a href="https://www.instagram.com/clevernursery/" class="rounded" target="_blank">
  27.                                 <i data-feather="instagram" class="fea icon-sm fea-social"></i>
  28.                             </a>
  29.                         </li>
  30.                         <li class="list-inline-item">
  31.                             <a href="https://twitter.com/clevernursery" class="rounded" target="_blank">
  32.                                 <i data-feather="twitter" class="fea icon-sm fea-social"></i>
  33.                             </a>
  34.                         </li>
  35.                         <li class="list-inline-item">
  36.                             <a href="https://www.tiktok.com/@clevernursery" class="rounded" target="_blank">
  37.                                 <i data-feather="music" class="fea icon-sm fea-social"></i>
  38.                             </a>
  39.                         </li>
  40.                     </ul>
  41.                     <p class="text-muted para-desc mx-auto mt-3">
  42.                         <a class="text-primary px-2" href="?_locale=ar_DZ"
  43.                             onclick="window.localStorage.setItem('languege', 'ar_DZ')">
  44.                             العربية
  45.                         </a>
  46.                         <a class="text-primary px-2" href="?_locale=fr"
  47.                             onclick="window.localStorage.setItem('languege', 'fr')">
  48.                             Français
  49.                         </a>
  50.                     </p>
  51.                     </ul>
  52.                 </div>
  53.             </div>
  54.         </div>
  55.     </div>
  56.     <a href="#home" class="back-to-top" id="back-to-top" title="Top">
  57.         <i class="mdi mdi-arrow-up icons bg-light text-dark"></i>
  58.     </a>
  59. </footer>
  60. <footer class="footer-bar bg-dark">
  61.     <div class="container">
  62.         <div class="row justify-content-center">
  63.             <div class="col-12 text-center">
  64.                 <p class="mb-0 footer-text para-desc mx-auto">
  65.                     ©
  66.                     <script>
  67.                         document.write(new Date().getFullYear())
  68.                     </script>
  69.                     <span class="text-reset">Clever Nursery</span>.
  70.                     <br>
  71.                     {% trans %}
  72.                     Made in
  73.                     {% endtrans %}
  74.                     <a href="https://clevernursery.com" target="_blank" class="text-reset">
  75.                         Clever Nursery
  76.                     </a>.
  77.                     <br>
  78.                     <a target="_blank" href="https://blog.clevernursery.com" class="text-reset px-2">
  79.                         {% trans %}
  80.                         Blog
  81.                         {% endtrans %}
  82.                     </a>
  83.                     <a href="{{ path('faq') }}" class="text-reset px-2">
  84.                         {% trans %}
  85.                         Faq
  86.                         {% endtrans %}
  87.                     </a>
  88.                     <a href="{{ path('conditions') }}" class="text-reset px-2">
  89.                         {% trans %}
  90.                         Conditions d'utilisations
  91.                         {% endtrans %}
  92.                     </a>
  93.                 </p>
  94.             </div>
  95.         </div>
  96.     </div>
  97. </footer>{% for message in app.flashes('error') %}
  98. <script>
  99.     document.addEventListener("DOMContentLoaded", function () {
  100.         alertify.set('notifier', 'position', 'bottom-right');
  101.         alertify.error(`{{
  102.       message
  103.     }}`)
  104.     })
  105. </script>{% endfor %}{% for message in app.flashes('success') %}
  106. <script>
  107.     document.addEventListener("DOMContentLoaded", function () {
  108.         alertify.set('notifier', 'position', 'bottom-right');
  109.         alertify.success(`{{
  110.       message
  111.     }}`)
  112.     })
  113. </script>{% endfor %}{% for message in app.flashes('warning') %}
  114. <script>
  115.     document.addEventListener("DOMContentLoaded", function () {
  116.         alertify.set('notifier', 'position', 'bottom-right');
  117.         alertify.warning(`{{
  118.       message
  119.     }}`)
  120.     })
  121. </script>{% endfor %}{% for message in app.flashes('info') %}
  122. <script>
  123.     document.addEventListener("DOMContentLoaded", function () {
  124.         alertify.set('notifier', 'position', 'bottom-right');
  125.         alertify.message(`{{
  126.       message
  127.     }}`)
  128.     })
  129. </script>{% endfor %}