mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
14 lines
No EOL
415 B
HTML
14 lines
No EOL
415 B
HTML
<template name="adminMenu">
|
|
{{#if isAdmin}}
|
|
<div class="dropdown header-submodule admin-menu">
|
|
<a class="admin dropdown-top-level" href="/">{{_ "admin"}}</a>
|
|
<div class="dropdown-menu">
|
|
<ul role="menu" aria-labelledby="dLabel">
|
|
{{#each menu}}
|
|
{{> UI.dynamic template=menuItem data=this}}
|
|
{{/each}}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
</template> |