Vulcan/client/views/notifications/notifications.html
2012-10-05 14:36:23 +09:00

13 lines
No EOL
342 B
HTML

<template name="notifications">
{{#if currentUser}}
<div class="notifications">
<a href="#" class="notifications-toggle {{notification_class}}">{{notification_count}}</a>
<a href="#" class="mark-as-read">Mark all as read</a>
<ul>
{{#each notifications}}
{{> notification_item}}
{{/each}}
</ul>
</div>
{{/if}}
</template>