clipbucket/upload/styles/cbv3/layout/blocks/notifications/notifications.html
2013-01-01 12:25:27 +00:00

26 lines
883 B
HTML

{$notifications=$cbfeeds->get_notifications()}
<div class="notifications">
<div class="notify_title">{lang code='Notifications'}</div>
<div class="seperator"></div>
<div class="notifications-container cbv3-scroller">
<div id="new_notifications"></div>
{if $notifications}
{foreach $notifications as $notification}
{if $notification}
{if $notification@last}{$last=true}{else}{$last=false}{/if}
{$block=get_template('notification_block','path')}
{include file=$block notification=$notification last=$last}
{/if}
{/foreach}
{else}
<div class="no_notifications">No notification</div>
{/if}
</div>
<div class="seperator"></div>
<div class="all_notifications"><a href="">Show all notifications</a></div>
</div>