templates/themesWebsite/cvs/application/cv/components/footer.html.twig line 1

Open in your IDE?
  1. <footer class="bg-white">
  2.     <div class="container pt-8 pt-md-10 pb-7">
  3.         {#
  4.         <div class="row gx-lg-0 gy-6">
  5.             <div class="col-lg-4">
  6.                 <div class="widget">
  7.                     <img class="mb-4" src="./assets/img/logo-dark.png" srcset="./assets/img/logo-dark@2x.png 2x" alt="">
  8.                     <p class="lead mb-0">We are trusted by over 5000+ clients. Join them by using our services and grow your business.</p>
  9.                 </div>
  10.                 <!-- /.widget -->
  11.             </div>
  12.             <!-- /column -->
  13.             <div class="col-lg-3 offset-lg-2">
  14.                 <div class="widget">
  15.                     <div class="d-flex flex-row">
  16.                         <div>
  17.                             <div class="icon text-primary fs-28 me-4 mt-n1"> <i class="uil uil-phone-volume"></i> </div>
  18.                         </div>
  19.                         <div>
  20.                             <h5 class="mb-1">Phone</h5>
  21.                             <p class="mb-0">00 (123) 456 78 90 <br>00 (987) 654 32 10</p>
  22.                         </div>
  23.                     </div>
  24.                     <!--/div -->
  25.                 </div>
  26.                 <!-- /.widget -->
  27.             </div>
  28.             <!-- /column -->
  29.             <div class="col-lg-3">
  30.                 <div class="widget">
  31.                     <div class="d-flex flex-row">
  32.                         <div>
  33.                             <div class="icon text-primary fs-28 me-4 mt-n1"> <i class="uil uil-location-pin-alt"></i> </div>
  34.                         </div>
  35.                         <div class="align-self-start justify-content-start">
  36.                             <h5 class="mb-1">Address</h5>
  37.                             <address>Moonshine St. 14/05 Light City, London, United Kingdom</address>
  38.                         </div>
  39.                     </div>
  40.                     <!--/div -->
  41.                 </div>
  42.                 <!-- /.widget -->
  43.             </div>
  44.             <!-- /column -->
  45.         </div>
  46.         #}
  47.         <hr class="mt-13 mt-md-14 mb-7">
  48.         <div class="d-md-flex align-items-center justify-content-between">
  49.             <p class="mb-2 mb-lg-0">
  50.                 &copy; {{ 'now'|date('Y') }} &nbsp; &nbsp; <img src="{{ logo }}" width="40" height="40" style="margin-top:-8px;" alt="{{ websitename }}" loading="lazy" /> &nbsp; &nbsp; {{ websitename }}, tous droits réservés.
  51.             </p>
  52.             <div style="text-align: right; font-size:16px;">
  53.                 {% set menuHeader = getMenuWebsiteArray("footer",connectUser) %}
  54.                 {% if menuHeader is not empty %}
  55.                     {% for m in menuHeader %}
  56.                         <a href="{{ m.link }}" {% if m.targetBlank == 1%}target="_blank" rel="noreferrer"{% endif %}>{{ m.title }}</a> &nbsp; &nbsp; &nbsp;
  57.                     {% endfor %}
  58.                 {% endif %}
  59.                 {% if app.user is not null %}
  60.                     {% if is_granted("ROLE_SUPER_ADMIN") %}
  61.                         <a href="{{ path('backoffice_dashboard') }}" class="red-color">Administration</a> &nbsp; &nbsp; &nbsp;
  62.                     {% endif %}
  63.                     <a href="{{ path('app_logout') }}">Déconnexion</a>
  64.                 {% endif %}
  65.             </div>
  66.         </div>
  67.     </div>
  68. </footer>