foundry-sw5e/templates/actors/newActor/limited-sheet.html
2020-11-02 12:23:55 -07:00

27 lines
859 B
HTML

<form class="{{cssClass}} swalt-sheet limited" autocomplete="off">
<!-- HEADER -->
<header class="panel">
<img class="profile" src="{{actor.img}}" title="{{actor.name}}" data-edit="img" />
<h1 class="character-name">
{{actor.name}}
</h1>
</header>
<!-- BODY -->
<section class="sheet-body">
<div class="tab biography active">
<div class="panel">
<section class="additional-info">
<h1 class="section-titles">Description</h1>
{{editor content=data.details.description.value target="data.details.description.value" button=true owner=owner editable=editable}}
</section>
<section>
<h1 class="section-titles">Background</h1>
{{editor content=data.details.biography.value target="data.details.biography.value" button=true owner=owner editable=editable}}
</section>
</div>
</div>
</section>
</form>