mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* Extended the capabilities of scene rangemeasurement settings * Corrected darkmode tab title
12 lines
577 B
Handlebars
12 lines
577 B
Handlebars
<nav class="sheet-tabs tabs{{#if verticalTabs}} vertical{{/if}}"
|
|
aria-roledescription="{{localize "SHEETS.FormNavLabel"}}">
|
|
{{#each tabs as |tab|}}
|
|
<a data-action="tab" data-group="{{tab.group}}" data-tab="{{tab.id}}"
|
|
{{#if tab.cssClass}}class="{{tab.cssClass}}"{{/if}}
|
|
{{#if tab.tooltip}}data-tooltip="{{tab.tooltip}}"{{/if}}>
|
|
{{#if tab.icon}}<i class="{{tab.icon}}" inert></i>{{/if}}
|
|
{{#if tab.src}}<img src="{{tab.src}}" />{{/if}}
|
|
{{#if tab.label}}<span>{{localize tab.label}}</span>{{/if}}
|
|
</a>
|
|
{{/each}}
|
|
</nav>
|