{% sw_extends '@Storefront/storefront/base.html.twig' %}
{% block base_main %}
{% if showUnreadMessagesModal %}
<!-- Modal -->
<div class="modal show" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" style="display: block; background: rgba(80, 80, 80, 0.8);">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header d-flex justify-content-center p-2">
<h5 class="modal-title" id="exampleModalLabel">Sie haben ungelesene wichtige Nachrichten.</h5>
</div>
<div class="modal-footer d-flex justify-content-center p-3">
<a href="{{ seoUrl('storefront.account.mailbox.home') }}" class="btn btn-primary">Zu den Nachrichten</a>
</div>
</div>
</div>
</div>
{% endif %}
{{ parent() }}
{% endblock %}