38 lines
807 B
Handlebars
38 lines
807 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>Warframe Market Gaps</title>
|
|
</head>
|
|
<body>
|
|
<h1>Warframe Market Gaps</h1>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Parts price</th>
|
|
<th>Set price</th>
|
|
<th>Difference</th>
|
|
</tr>
|
|
{{#each items}}
|
|
<tr>
|
|
<td class="name">
|
|
<a href="{{this.link}}" target="_blank">
|
|
{{this.name}}
|
|
</a>
|
|
</td>
|
|
<td>{{this.parts}}</td>
|
|
<td>{{this.set}}</td>
|
|
<td>{{this.difference}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</table>
|
|
|
|
<div class="timestamp">
|
|
Generated at {{timestamp}}
|
|
</div>
|
|
</body>
|
|
</html> |