notification-top-block.html.twig 320 B

123456
  1. {% for entry_id, entry in notifications %}
  2. <div class="alert {{ entry.type }} position-top">
  3. <a href="#" data-notification-action="hide-notification" data-notification-id="{{ entry.id }}" class="close hide-notification"><i class="fa fa-close"></i></a>
  4. {{ entry.message|raw }}
  5. </div>
  6. {% endfor %}