Welcome to mirror list, hosted at ThFree Co, Russian Federation.

federationscopemenu.handlebars « templates « js « settings - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4bd945b094d6e883e06e6e5d6da33bc7f694839f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<ul>
	{{#each items}}
		<li tabindex="0">
			<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>