Vulcan/client/views/notifications/notifications.html

15 lines
No EOL
398 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">{{i18n "Mark all as read"}}</a>
<ul>
{{#each notifications}}
{{> notification_item}}
{{/each}}
</ul>
</div>
{{/if}}
{{/if}}
</template>