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

25 lines
571 B
Handlebars
Raw Normal View History

2018-02-20 01:39:05 +00:00
<link rel="stylesheet" href="/css/main_style.css">
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: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 00:46:19 +00:00
</table>