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
2018-02-20 17:56:28 +01:00

33 lines
677 B
Handlebars

<link rel="stylesheet" href="/assets/css/main_style.css">
<div align="center">
<img src="/assets/top.png" align="top">
<img src="/assets/bleft.png" align="left">
<img src="/assets/bright.png" align="right">
<table Border = 1 class="col">
<tr>
<th>Name</th>
<th>Level</th>
<th>Gold</th>
<th>Class</th>
<th>Aktion</th>
<th>Exp</th>
</tr>
{{#instances}}
<tr>
<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>
<td>{{currentAction}}</td>
<td><progress value={{exp_percentage}} max="1"></progress></td>
</tr>
{{/instances}}
</table>
</div>