28 lines
912 B
Handlebars
28 lines
912 B
Handlebars
{{!-- Template for the common body (navigation & body sections) of all items. --}}
|
|
|
|
{{!-- Sheet Tab Navigation --}}
|
|
<nav class="sheet-tabs tabs" data-group="primary">
|
|
<a class="item" data-tab="description">{{localize "DS4.HeadingDescription"}}</a>
|
|
<a class="item" data-tab="effects">{{localize "DS4.HeadingEffects"}}</a>
|
|
{{#if isPhysical}}
|
|
<a class="item" data-tab="details">{{localize "DS4.HeadingDetails"}}</a>
|
|
{{/if}}
|
|
</nav>
|
|
|
|
{{!-- Sheet Body --}}
|
|
<section class="sheet-body">
|
|
|
|
{{!-- Description Tab --}}
|
|
{{#> systems/ds4/templates/sheets/item/tabs/description.hbs}}
|
|
{{> @partial-block}}
|
|
{{/systems/ds4/templates/sheets/item/tabs/description.hbs}}
|
|
|
|
{{!-- Effects Tab --}}
|
|
{{> systems/ds4/templates/sheets/item/tabs/effects.hbs}}
|
|
|
|
{{#if isPhysical}}
|
|
{{!-- Details Tab --}}
|
|
{{> systems/ds4/templates/sheets/item/tabs/details.hbs}}
|
|
{{/if}}
|
|
|
|
</section>
|