38 lines
978 B
HTML
38 lines
978 B
HTML
<template name="character">
|
|
<div>
|
|
{{> characterName}}
|
|
</div>
|
|
<div class="flexContainer">
|
|
<div class="flexItem">
|
|
<div id="savesAndSkills" class="floatBox">
|
|
{{> skills}}
|
|
</div>
|
|
</div>
|
|
<div class="flexItem floatBox">
|
|
<h2>Inventory</h2>
|
|
{{> inventoryTables}}
|
|
</div>
|
|
<div class="flexItem floatBox">
|
|
<h2>Description</h2>
|
|
{{> textField character=this field="description"}}
|
|
</div>
|
|
<div class="flexItem floatBox">
|
|
<h2>Personality</h2>
|
|
{{> textField character=this field="personality"}}
|
|
<h2>Ideals</h2>
|
|
{{> textField character=this field="ideals"}}
|
|
<h2>Bonds</h2>
|
|
{{> textField character=this field="bonds"}}
|
|
<h2>Flaws</h2>
|
|
{{> textField character=this field="flaws"}}
|
|
</div>
|
|
<div class="flexItem floatBox">
|
|
<h2>Backstory</h2>
|
|
{{> textField character=this field="backstory"}}
|
|
</div>
|
|
<div class="flexItem floatBox">
|
|
<h2>Notes</h2>
|
|
{{> textField character=this field="notes"}}
|
|
</div>
|
|
</div>
|
|
</template> |