Vulcan/client/views/notifications/notifications.html

15 lines
379 B
HTML
Raw Normal View History

2012-10-04 10:09:20 +09:00
<template name="notifications">
{{#if currentUser}}
2012-10-08 16:49:01 +09:00
{{#if canPost}}
<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}}
{{/if}}
2012-10-04 10:09:20 +09:00
</template>