Vulcan/client/views/notifications/notifications.html

15 lines
398 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}}
2012-10-18 17:47:56 +09:00
<div class="notifications desktop">
2012-10-08 16:49:01 +09:00
<a href="#" class="notifications-toggle {{notification_class}}">{{notification_count}}</a>
<a href="#" class="mark-as-read">{{i18n "Mark all as read"}}</a>
2012-10-08 16:49:01 +09:00
<ul>
{{#each notifications}}
{{> notification_item}}
{{/each}}
</ul>
</div>
{{/if}}
{{/if}}
2012-10-04 10:09:20 +09:00
</template>