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

40 lines
727 B
Handlebars
Raw Normal View History

2018-02-20 01:39:05 +00:00
2018-02-20 16:56:28 +00:00
<link rel="stylesheet" href="/assets/css/main_style.css">
2018-02-20 01:39:05 +00:00
2018-02-20 01:50:14 +00:00
<div class="window" align="center">
<img src="/assets/window.png" align="center" class="backframe">
2018-02-20 01:50:14 +00:00
<div class="divtab">
2018-02-19 22:53:06 +00:00
2018-02-20 01:50:14 +00:00
<table Border = 1 class="col">
2018-02-19 22:53:06 +00:00
<tr>
<th>Name</th>
<th>Level</th>
<th>Gold</th>
<th>Class</th>
2018-02-20 16:56:28 +00:00
<th>Aktion</th>
2018-02-19 22:53:06 +00:00
<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>
2018-02-20 16:56:28 +00:00
<td>{{level}}<img src="/assets/Arrow.png" align="right"></td>
<td>{{gold}}<img src="/assets/Gold.png" align="right"></td>
2018-02-20 00:07:10 +00:00
<td>{{class}}</td>
2018-02-20 16:56:28 +00:00
<td>{{currentAction}}</td>
2018-02-20 00:46:19 +00:00
<td><progress value={{exp_percentage}} max="1"></progress></td>
2018-02-19 22:53:06 +00:00
</tr>
2018-02-20 00:07:10 +00:00
{{/instances}}
2018-02-20 01:50:14 +00:00
</table>
</div>
</div>
<img src="/assets/back.png" align="top" class="frame">