15 lines
527 B
Handlebars
15 lines
527 B
Handlebars
{{!--
|
|
SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
SPDX-FileCopyrightText: 2021 Gesina Schwalbe
|
|
|
|
SPDX-License-Identifier: MIT
|
|
--}}
|
|
|
|
<header class="sheet-header">
|
|
<img class="profile-img" src="{{data.img}}" data-edit="img" title="{{data.name}}" />
|
|
<div class="header-fields flexrow">
|
|
<h1 class="charname"><input name="name" type="text" value="{{data.name}}" placeholder="Name" /></h1>
|
|
<h2 class="item-type">{{lookup config.i18n.itemTypes item.type}}</h2>
|
|
{{> @partial-block}}
|
|
</div>
|
|
</header>
|