2021-06-26 22:02:00 +02:00
|
|
|
{{!--
|
|
|
|
SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
|
|
SPDX-FileCopyrightText: 2021 Oliver Rümpelein
|
|
|
|
SPDX-FileCopyrightText: 2021 Gesina Schwalbe
|
|
|
|
|
|
|
|
SPDX-License-Identifier: MIT
|
|
|
|
--}}
|
|
|
|
|
2022-01-21 03:22:17 +01:00
|
|
|
<form class="{{cssClass}} ds4-sheet-form" autocomplete="off">
|
2021-07-12 00:12:59 +02:00
|
|
|
{{!-- Header --}}
|
|
|
|
{{#> systems/ds4/templates/sheets/actor/components/actor-header.hbs}}
|
|
|
|
{{> systems/ds4/templates/sheets/actor/components/character-properties.hbs}}
|
|
|
|
{{/systems/ds4/templates/sheets/actor/components/actor-header.hbs}}
|
2020-12-23 16:52:20 +01:00
|
|
|
|
|
|
|
{{!-- Sheet Tab Navigation --}}
|
2022-01-21 03:22:17 +01:00
|
|
|
<nav class="ds4-sheet-tab-nav tabs" data-group="primary">
|
|
|
|
<a class="ds4-sheet-tab-nav__item" data-tab="values">{{localize 'DS4.HeadingValues'}}</a>
|
|
|
|
<a class="ds4-sheet-tab-nav__item" data-tab="inventory">{{localize 'DS4.HeadingInventory'}}</a>
|
|
|
|
<a class="ds4-sheet-tab-nav__item" data-tab="spells">{{localize 'DS4.HeadingSpells'}}</a>
|
|
|
|
<a class="ds4-sheet-tab-nav__item" data-tab="abilities">{{localize 'DS4.HeadingAbilities'}}</a>
|
|
|
|
<a class="ds4-sheet-tab-nav__item" data-tab="effects">{{localize 'DS4.HeadingEffects'}}</a>
|
|
|
|
<a class="ds4-sheet-tab-nav__item" data-tab="biography">{{localize 'DS4.HeadingBiography'}}</a>
|
2020-12-23 16:52:20 +01:00
|
|
|
</nav>
|
|
|
|
|
2021-01-26 20:30:53 +01:00
|
|
|
<!-- beautify ignore:start -->
|
|
|
|
<!-- prettier-ignore-start -->
|
2021-01-24 01:20:55 +01:00
|
|
|
{{!-- Sheet Body (remove indentation to avoid annoying Handlebars auto-indent) --}}
|
2022-01-21 03:22:17 +01:00
|
|
|
<section class="ds4-sheet-body">
|
2021-03-24 20:10:14 +01:00
|
|
|
{{!-- Values Tab --}}
|
2021-04-13 21:40:52 +02:00
|
|
|
{{> systems/ds4/templates/sheets/actor/tabs/values.hbs}}
|
2021-03-24 20:10:14 +01:00
|
|
|
|
|
|
|
{{!-- Inventory Tab --}}
|
2021-04-13 21:40:52 +02:00
|
|
|
{{> systems/ds4/templates/sheets/actor/tabs/character-inventory.hbs}}
|
2020-12-23 16:52:20 +01:00
|
|
|
|
2021-01-24 01:20:55 +01:00
|
|
|
{{!-- Spells Tab --}}
|
2021-04-13 21:40:52 +02:00
|
|
|
{{> systems/ds4/templates/sheets/actor/tabs/spells.hbs}}
|
2021-01-03 20:54:45 +01:00
|
|
|
|
2021-07-10 21:02:48 +02:00
|
|
|
{{!-- Abilities Tab --}}
|
2021-07-22 04:06:29 +02:00
|
|
|
{{> systems/ds4/templates/sheets/actor/tabs/character-abilities.hbs}}
|
2021-01-09 23:39:35 +01:00
|
|
|
|
2021-07-20 02:16:43 +02:00
|
|
|
{{!-- Effects Tab --}}
|
|
|
|
{{> systems/ds4/templates/sheets/actor/tabs/effects.hbs}}
|
|
|
|
|
2021-01-24 01:20:55 +01:00
|
|
|
{{!-- Biography Tab --}}
|
2021-04-13 21:40:52 +02:00
|
|
|
{{> systems/ds4/templates/sheets/actor/tabs/biography.hbs}}
|
|
|
|
|
2021-01-24 01:20:55 +01:00
|
|
|
</section>
|
2021-01-26 20:30:53 +01:00
|
|
|
<!-- prettier-ignore-end -->
|
|
|
|
<!-- beautify ignore:end -->
|
2021-01-16 15:16:40 +01:00
|
|
|
</form>
|