mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
13 lines
No EOL
342 B
HTML
13 lines
No EOL
342 B
HTML
<template name="notifications">
|
|
{{#if currentUser}}
|
|
<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}}
|
|
</template> |