mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
19 lines
No EOL
662 B
HTML
19 lines
No EOL
662 B
HTML
<template name="notificationsMenu">
|
|
{{#if isLoggedIn}}
|
|
<div class="dropdown notifications-menu header-submodule">
|
|
<a class="view dropdown-top-level" href="/">{{notification_count}}</a>
|
|
<div class="dropdown-menu">
|
|
<ul role="menu" aria-labelledby="dLabel">
|
|
{{#if hasNotifications}}
|
|
<li><a href="#" class="button mark-as-read">{{_ "mark_as_read"}}</a></li>
|
|
{{#each notifications}}
|
|
{{> UI.dynamic template=notificationItem}}
|
|
{{/each}}
|
|
{{else}}
|
|
<li>{{_ "no_notifications"}}</li>
|
|
{{/if}}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
</template> |