18 lines
435 B
HTML
18 lines
435 B
HTML
|
|
<form class="{{cssClass}}" autocomplete="off">
|
||
|
|
{{#if hasName}}
|
||
|
|
<header>
|
||
|
|
<input type="text" name="name" value="{{data.name}}">
|
||
|
|
</header>
|
||
|
|
{{/if}}
|
||
|
|
|
||
|
|
{{#if hasImage}}
|
||
|
|
<figure>
|
||
|
|
<img src="{{data.img}}" data-edit="img">
|
||
|
|
</figure>
|
||
|
|
{{/if}}
|
||
|
|
|
||
|
|
{{#if hasDescription}}
|
||
|
|
{{editor descriptionHTML target="description" editable=editable engine="prosemirror" collaborate=false}}
|
||
|
|
{{/if}}
|
||
|
|
</form>
|