templates/footer.html.twig line 1

Open in your IDE?
  1. {#
  2. <footer class="footer fixed-bottom bg-primary">
  3.     <div class="container text-center">
  4.             <span class="text-white">
  5.                 This is the sticky footer.
  6.             </span>
  7.     </div>
  8. </footer>
  9. #}
  10. <footer class="footer" style="padding: 2em 0; background: #121212; font-size: .8em;">
  11.     <div class="container mt-5">
  12.         <div class="row mt-2">
  13.             <div class="col-md-12 text-center">
  14.                 <a class="navbar-brand d-flex flex-column align-items-center" href="{{ path('app_home') }}">
  15.                     <img src="{{ asset('assets/img/logo.png') }}" width="60" />
  16.                 </a>
  17.             </div>
  18.         </div>
  19.         <div class="row justify-content-center mt-2">
  20.             <div class="col-md-12 text-center">
  21.                 <span style="color: #E00410;"><a href="{{ path('app_home') }}" class="text-decoration-none" style="color: #D1D5D5;">FactoriaX.com</a></span>
  22.             </div>
  23.         </div>
  24.         <div class="row mt-2">
  25.             <div class="col-md-12 text-center">
  26.                 Copyright ©{{ "now"|date('Y') }} - All rights reserved
  27.             </div>
  28.         </div>
  29.     </div>
  30. </footer>