77 lines
1.2 KiB
Handlebars
77 lines
1.2 KiB
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">
|
|
<title>Warframe Market Gaps</title>
|
|
|
|
<style>
|
|
* {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
table {
|
|
margin: 64px 0;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
tr {
|
|
text-align: left;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background: rgb(240, 242, 243);
|
|
}
|
|
|
|
td {
|
|
padding: 2px 16px;
|
|
}
|
|
|
|
th {
|
|
padding: 8px 16px;
|
|
}
|
|
|
|
.name {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.timestamp {
|
|
font-size: small;
|
|
}
|
|
</style>
|
|
</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> |