forked from GitHub-Mirrors/foundry-sw5e
27 lines
859 B
HTML
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>
|
|
|