Files
DiceCloud/rpg-docs/client/views/character/character.html
2014-11-11 08:53:33 +00:00

37 lines
950 B
HTML

<template name="character">
<div>
{{> characterName}}
</div>
<div class="flexContainer">
<div class="flexItem">
<div>
Proficiency Bonus {{proficiencyBonus}}
</div>
<div id="savesAndSkills" class="floatBox">
{{> skills}}
</div>
</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>