silverstripe-webpack/app/templates/Site/Objects/NotificationsList.ss
2019-01-10 18:10:31 +07:00

10 lines
279 B
Scheme

<% if $ShowNotifications && $NotificationsToday %>
<% loop $NotificationsToday %>
<div class="alert alert-warning">
<% if $Title %>
<b>$Title:</b>
<% end_if %>
$Content
</div>
<% end_loop %>
<% end_if %>