Files
DiceCloud/rpg-docs/client/views/home/home.html
2014-11-13 09:30:54 +00:00

10 lines
307 B
HTML

<template name="home">
{{>loginButtons}}
<div>
{{# each characters}}
<li><a href="{{ pathFor 'character' }} ">{{_id}}</a></li>
{{/each}}
</div>
<input id="addCharacter" type="button" value="Add Character">
{{> quickForm collection="Characters" id="insertCharacterForm" type="insert"}}
</template>