templates/common/_footer.html.twig line 1

Open in your IDE?
  1. <!-- Footer -->
  2. {# source: https://mdbootstrap.com/docs/standard/navigation/footer/ #}
  3. <footer class="bg-footer text-center text-white">
  4.     <!-- Grid container -->
  5.     <div class="container p-1">
  6.         <!-- Section: Links -->
  7.         <section class="">
  8.             <!--Grid row-->
  9.             <div class="row">
  10.                 <!--Grid column-->
  11.                 <div class="col-lg-4 col-md-6 mb-4 mb-md-0">
  12.                     <a href="{{ path('support_client') }}"> 
  13.                         <img src="{{ asset('assets/btn_support.png') }}" style="float:left;">
  14.                     </a>
  15.                 </div>
  16.                 <!--Grid column-->
  17. <!---TODO: mettre dans le css -->
  18.                 <div class="col-lg-8 col-md-6 mb-4 mb-md-0" style="display: flex;
  19.     justify-content: right;
  20.     align-items: center;
  21.     margin-left: 0px;
  22.     flex-direction: row-reverse;">
  23.                     <img src="{{ asset('assets/logo_elementaire.png') }}" style="margin-left:2em;">
  24.                     <p class="footerInfos">@{{ "now"| date('Y') }} iWip - Tous droits réservés | version {{ shivas_app_version }}</p>
  25.                     {% if is_granted('IS_IMPERSONATOR') %}
  26.     <a class="btn btn-primary" style="margin-right:2em;" href="{{ impersonation_exit_path(path('admin') ) }}">Retour admin</a>
  27. {% endif %}
  28.                 </div>
  29.                 <!--Grid column-->
  30.             </div>
  31.             <!--Grid row-->
  32.         </section>
  33.         <!-- Section: Links -->
  34.     </div>
  35. </footer>
  36. <!-- Footer -->