silverstripe-elemental-basics/templates/App/Objects/NotificationsList.ss

33 lines
1.0 KiB
Scheme
Raw Normal View History

2021-06-19 20:27:51 +02:00
<% if $ShowNotifications && $NotificationsToday %>
<div class="notifications-list">
<% loop $NotificationsToday %>
<div class="alert alert-warning">
<div class="container">
<% if $DisplayTitle && $Title %>
<h2>$Title</h2>
<% end_if %>
<div class="typography">
$Content
</div>
<% if $TargetLink %>
<% with $TargetLink %>
<a
class="alert-link" href="$LinkURL"
<% if $OpenInNewWindow %> target="_blank"<% end_if %>
>
$Title
</a>
<% end_with %>
<% end_if %>
2021-07-22 14:56:36 +02:00
<b class="btn btn-danger btn-close" data-bs-dismiss="alert" aria-label="Close">
2021-06-19 20:27:51 +02:00
<i class="fas fa-times"></i>
</b>
</div>
</div>
<% end_loop %>
</div>
<% end_if %>