mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
15 lines
No EOL
440 B
HTML
15 lines
No EOL
440 B
HTML
<template name="notifications">
|
|
{{#if currentUser}}
|
|
{{#if canPost}}
|
|
<div class="notifications module {{notification_class}}">
|
|
<a href="#" class="mark-as-read">{{i18n "Mark all as read"}}</a>
|
|
<ul>
|
|
{{#each notifications}}
|
|
{{> UI.dynamic template=notification_item}}
|
|
{{/each}}
|
|
</ul>
|
|
</div>
|
|
<a href="#" class="notifications-toggle {{notification_class}}">{{notification_count}}</a>
|
|
{{/if}}
|
|
{{/if}}
|
|
</template> |