custom/plugins/CioCustomerMailbox/src/Resources/views/storefront/base.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_main %}
  3.     {% if showUnreadMessagesModal %}
  4.         <!-- Modal -->
  5.         <div class="modal show" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" style="display: block; background: rgba(80, 80, 80, 0.8);">
  6.             <div class="modal-dialog" role="document">
  7.                 <div class="modal-content">
  8.                     <div class="modal-header d-flex justify-content-center p-2">
  9.                         <h5 class="modal-title" id="exampleModalLabel">Sie haben ungelesene wichtige Nachrichten.</h5>
  10.                     </div>
  11.                     <div class="modal-footer d-flex justify-content-center p-3">
  12.                         <a href="{{ seoUrl('storefront.account.mailbox.home') }}" class="btn btn-primary">Zu den Nachrichten</a>
  13.                     </div>
  14.                 </div>
  15.             </div>
  16.         </div>
  17.     {% endif %}
  18.     {{ parent() }}
  19. {% endblock %}