mirror of
https://github.com/a2nt/silverstripe-webpack.git
synced 2024-10-22 17:05:31 +02:00
18 lines
571 B
Scheme
18 lines
571 B
Scheme
<% if $ShowNotifications && $NotificationsToday %>
|
|
<div class="notifications-list">
|
|
<% loop $NotificationsToday %>
|
|
<div class="alert alert-warning">
|
|
<div class="$Top.DefaultContainer">
|
|
<b class="btn btn-danger btn-close" data-dismiss="alert" aria-label="Close">
|
|
<i class="fas fa-times"></i>
|
|
</b>
|
|
<% if $Title %>
|
|
<b>$Title:</b>
|
|
<% end_if %>
|
|
$Content
|
|
</div>
|
|
</div>
|
|
<% end_loop %>
|
|
</div>
|
|
<% end_if %>
|