Vulcan/client/views/notifications/notifications.html
2012-10-18 17:47:56 +09:00

15 lines
No EOL
387 B
HTML

<template name="notifications">
{{#if currentUser}}
{{#if canPost}}
<div class="notifications desktop">
<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}}
</template>