diff options
Diffstat (limited to 'settings/js/templates/federationscopemenu.handlebars')
-rw-r--r-- | settings/js/templates/federationscopemenu.handlebars | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/settings/js/templates/federationscopemenu.handlebars b/settings/js/templates/federationscopemenu.handlebars new file mode 100644 index 00000000000..e5cfd942f46 --- /dev/null +++ b/settings/js/templates/federationscopemenu.handlebars @@ -0,0 +1,17 @@ +<ul> + {{#each items}} + <li> + <a href="#" class="menuitem action action-{{name}} permanent {{#if active}}active{{/if}}" data-action="{{name}}"> + {{#if iconClass}} + <span class="icon {{iconClass}}"></span> + {{else}} + <span class="no-icon"></span> + {{/if}} + <p> + <strong class="menuitem-text">{{displayName}}</strong><br> + <span class="menuitem-text-detail">{{tooltip}}</span> + </p> + </a> + </li> + {{/each}} +</ul> |