ds4/templates/sheets/item/language-sheet.hbs

26 lines
847 B
Handlebars
Raw Normal View History

2021-06-26 22:02:00 +02:00
{{!--
SPDX-FileCopyrightText: 2021 Johannes Loher
SPDX-License-Identifier: MIT
--}}
2022-01-21 03:22:17 +01:00
<form class="{{cssClass}} ds4-sheet-form" autocomplete="off">
{{!-- Header --}}
{{> systems/ds4/templates/sheets/item/components/item-header.hbs}}
2021-04-13 21:40:52 +02:00
2022-01-21 03:22:17 +01:00
{{!-- Sheet Tab Navigation --}}
<nav class="ds4-sheet-tab-nav tabs" data-group="primary">
<a class="ds4-sheet-tab-nav__item" data-tab="description">{{localize 'DS4.HeadingDescription'}}</a>
<a class="ds4-sheet-tab-nav__item" data-tab="effects">{{localize 'DS4.HeadingEffects'}}</a>
</nav>
2021-04-13 21:40:52 +02:00
2022-01-21 03:22:17 +01:00
{{!-- Sheet Body --}}
<section class="ds4-sheet-body">
{{!-- Description Tab --}}
{{> systems/ds4/templates/sheets/item/tabs/description.hbs}}
{{!-- Effects Tab --}}
{{> systems/ds4/templates/sheets/item/tabs/effects.hbs}}
</section>
2021-04-13 21:40:52 +02:00
</form>