templates/Layout/footer.html.twig line 1

Open in your IDE?
  1. {% if app.user.showMessageForCustomer %}
  2.     <br/><br/><br/>
  3. {% endif %}
  4. <footer class="footer" style="padding: 0px 15px 0px;">
  5.     <div class="container-fluid">
  6.         <div class="row">
  7.             <div class="col-12" style="margin-bottom: 40px;">
  8.                 <p class="text-center">
  9.                     <a href="https://evosoft.pl" class="text-primary"><strong>EVOSOFT</strong></a> © 2019-{{ date('now')|date('Y') }} Wszelkie prawa zastrzeżone.
  10.                     <span style="float: right">
  11.                         {% if showCsvLogo() %}
  12.                             <a href="https://sklep.csv.pl/" target="_blank">
  13.                                 <img src="{{ asset('images/csvlogo.png') }}" alt="" height="24">
  14.                             </a>
  15.                         {% endif %}
  16.                         {% if showBpflowLogo() %}
  17.                             <a href="http://www.evosoft.pl/strona/bp-flow/" target="_blank">
  18.                                 <img src="{{ asset('images/bpflowlogo.png') }}" alt="" height="24">
  19.                             </a>
  20.                         {% endif %}
  21.                     </span>
  22.                     <br/>
  23.                     <a href="{{ path('regulations_show') }}" class="text-primary"><strong>Regulamin</strong></a>
  24.                 </p>
  25.             </div>
  26.         </div>
  27.         {% if app.user.showMessageForCustomer %}
  28.             <div class="alert alert-primary" role="alert" style="position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; margin: 0; border-radius: 0;">
  29.                 {{ app.user.messageForCustomer }}
  30.             </div>
  31.         {% endif %}
  32.     </div>
  33.     {% if showAnnouncementForSupplier is defined and showAnnouncementForRecipient is defined and showAnnouncementForSupplier and showAnnouncementForRecipient %}
  34.         <script type="text/javascript">
  35.             $( document ).ready(function() {
  36.                 $('#fullScreenPopupLabel').html('Komunikat dla dostawców oraz odbiorców');
  37.                 $('#fullScreenPopupMessage').html("{{ (announcementForSupplierContent~announcementForRecipientContent)|raw }}");
  38.                 $('#fullScreenPopup').modal('show');
  39.             });
  40.         </script>
  41.     {% elseif showAnnouncementForSupplier is defined and showAnnouncementForSupplier %}
  42.         <script type="text/javascript">
  43.             $( document ).ready(function() {
  44.                 $('#fullScreenPopupLabel').html('Komunikat dla dostawców');
  45.                 $('#fullScreenPopupMessage').html("{{ (announcementForSupplierContent)|raw }}");
  46.                 $('#fullScreenPopup').modal('show');
  47.             });
  48.         </script>
  49.     {% elseif showAnnouncementForRecipient is defined and showAnnouncementForRecipient %}
  50.         <script type="text/javascript">
  51.             $( document ).ready(function() {
  52.                 $('#fullScreenPopupLabel').html('Komunikat dla odbiorców');
  53.                 $('#fullScreenPopupMessage').html("{{ (announcementForRecipientContent)|raw }}");
  54.                 $('#fullScreenPopup').modal('show');
  55.             });
  56.         </script>
  57.     {% endif %}
  58. </footer>