Initial
This commit is contained in:
24
resources/app/templates/hud/navigation.html
Normal file
24
resources/app/templates/hud/navigation.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<nav id="navigation" class="app flexrow {{#if collapsed}}collapsed{{/if}}" data-tooltip-direction="CENTER"
|
||||
aria-label="{{localize 'SCENES.NavLabel'}}">
|
||||
{{#if scenes}}
|
||||
<a id="nav-toggle" class="nav-item" aria-label="{{localize 'SCENES.ToggleNav'}}" role="button" data-tooltip="SCENES.ToggleNav" alt="{{localize 'SCENES.ToggleNav'}}">
|
||||
<i class="fas fa-caret-{{#if collapsed}}down{{else}}up{{/if}}"></i>
|
||||
</a>
|
||||
{{/if}}
|
||||
|
||||
<ol id="scene-list">
|
||||
{{#each scenes}}
|
||||
<li class="scene nav-item {{this.css}}" data-scene-id="{{this.id}}" {{#if this.tooltip}}data-tooltip="{{this.tooltip}}"{{/if}}>
|
||||
<a class="scene-name">
|
||||
{{#if this.active}}<i class="fas fa-bullseye"></i>{{/if}}
|
||||
{{{this.name}}}
|
||||
</a>
|
||||
<ul class="scene-players">
|
||||
{{#each this.users as |user i|}}
|
||||
<li class="scene-player" style="background-color: {{user.color}};">{{user.letter}}</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
</li>
|
||||
{{/each}}
|
||||
</ol>
|
||||
</nav>
|
||||
Reference in New Issue
Block a user