4
1
Fork 0
This repository has been archived on 2019-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
Shakes_and_Fidget/views/index.hbs

33 lines
622 B
Handlebars
Raw Normal View History

2018-02-19 23:44:10 +00:00
<img src="/assets/top.png" align="top">
2018-02-19 22:53:06 +00:00
<img src="assets/bleft.png" align="left">
<img src="assets/bright.png" align="right">
<table Border = 1>
<tr>
<th>Name</th>
<th>Level</th>
<th>Gold</th>
<th>Class</th>
<th>Exp</th>
</tr>
2018-02-20 00:07:10 +00:00
{{#instances}}
2018-02-19 22:53:06 +00:00
<tr>
2018-02-20 00:07:10 +00:00
<td>{{name}}</td>
<td>{{level}}<img src="assets/Arrow.png" align="right"></td>
<td>{{gold}}<img src="assets/Gold.png" align="right"></td>
<td>{{class}}</td>
2018-02-20 00:33:58 +00:00
<td><progress value=result max="100"></progress></td>
2018-02-19 22:53:06 +00:00
</tr>
2018-02-20 00:07:10 +00:00
{{/instances}}
2018-02-19 22:53:06 +00:00
</table>
2018-02-20 00:33:58 +00:00
<script>
var percent = {{experienceForNextLevel}} / 100;
var result = {{experience}} / percent;
</script>