Files
DiceCloud/rpg-docs/client/views/home/home.html
2014-11-26 10:18:35 +00:00

9 lines
272 B
HTML

<template name="home">
{{>loginButtons}}
<div>
{{# each characters}}
<li><a href="{{ pathFor 'characterSheet' }} ">{{_id}}</a> <button id="deleteChar">delete</button></li>
{{/each}}
</div>
<input id="addCharacter" type="button" value="Add Character">
</template>