Vulcan/client/views/notifications/notifications.html

13 lines
342 B
HTML
Raw Normal View History

2012-10-04 10:09:20 +09:00
<template name="notifications">
{{#if currentUser}}
2012-10-04 17:25:10 +09:00
<div class="notifications">
<a href="#" class="notifications-toggle {{notification_class}}">{{notification_count}}</a>
<a href="#" class="mark-as-read">Mark all as read</a>
2012-10-04 13:30:57 +09:00
<ul>
{{#each notifications}}
{{> notification_item}}
{{/each}}
</ul>
</div>
{{/if}}
2012-10-04 10:09:20 +09:00
</template>