templates/footer.html.twig line 1

Open in your IDE?
  1. <div class="container-fluid text-white bg-dark">
  2.     <div class="row py-3">
  3.         <div class="col-md-4 text-center small">
  4.             © {{ 'now'|date('Y') }} {{ appName }}
  5.             <br>
  6.             <strong>Toate drepturile rezervate</strong>
  7.         </div>
  8.         {% if developedBy == '1' %}
  9.         <div class="offset-md-4 col-md-4 text-center small my-auto">
  10.             Developed by <a href="https://www.it-genetics.ro" class="text-decoration-none"
  11.                             style="color: #7bc144"><strong>IT
  12.                     Genetics</strong></a>
  13.         </div>
  14.         {% endif %}
  15.     </div>
  16. </div>