Added character sheet but still experiencing problems with categories.

This commit is contained in:
phil 2013-07-02 23:26:56 +02:00
parent 26bcdb20c2
commit 70378c1e0c
12 changed files with 550 additions and 35 deletions

View file

@ -0,0 +1,79 @@
---
layout: ikrpg
tags: [Rules, None, None]
categories: [ Character-Sheet ]
---
<div class="sheet">
<form id="notes" class="card">
<input id="name" type="text" />
<div class="content">
<div id="note1" class="note">
<input class="title" type="text" />
<textarea class="text" rows="1"></textarea>
</div>
<div id="note2" class="note">
<input class="title" type="text" />
<textarea class="text" rows="1"></textarea>
</div>
<div id="note3" class="note">
<input class="title" type="text" />
<textarea class="text" rows="1"></textarea>
</div>
<div id="note4" class="note">
<input class="title" type="text" />
<textarea class="text" rows="1"></textarea>
</div>
<div id="note5" class="note">
<input class="title" type="text" />
<textarea class="text" rows="1"></textarea>
</div>
<div id="note6" class="note">
<input class="title" type="text" />
<textarea class="text" rows="1"></textarea>
</div>
<div id="note7" class="note">
<input class="title" type="text" />
<textarea class="text" rows="1"></textarea>
</div>
<div id="note8" class="note">
<input class="title" type="text" />
<textarea class="text" rows="1"></textarea>
</div>
<div id="note9" class="note">
<input class="title" type="text" />
<textarea class="text" rows="1"></textarea>
</div>
<div id="note10" class="note">
<input class="title" type="text" />
<textarea class="text" rows="1"></textarea>
</div>
<div id="note11" class="note">
<input class="title" type="text" />
<textarea class="text" rows="1"></textarea>
</div>
<div id="note12" class="note">
<input class="title" type="text" />
<textarea class="text" rows="1"></textarea>
</div>
</div>
</form>
</div>
<script type="text/javascript">
var Hero = {
"name": "Hero's name",
"note1": { "title": "Permanent Injuries", "text": "None" },
"note2": { "title": "Spoken Languages", "text": "" },
"note3": { "title": "Religious Beliefs", "text": "" },
"note4": { "title": "Connections", "text": "None" },
"note5": { "title": "Gold", "text": "0 gc" },
"note6": { "title": "Note", "text": "Text" },
"note7": { "title": "", "text": "" },
"note8": { "title": "", "text": "" },
"note9": { "title": "", "text": "" },
"note10": { "title": "", "text": "" },
"note11": { "title": "", "text": "" },
"note12": { "title": "", "text": "" }
};
</script>
<script type="text/javascript" src="/static/javascripts/heroic.js"></script>