41 lines
726 B
Handlebars
41 lines
726 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">
|
|
<title>Warframe Market Gaps</title>
|
|
|
|
<style>
|
|
* {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
ul li b {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.timestamp {
|
|
font-size: small;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Warframe Market Gaps</h1>
|
|
|
|
<ul>
|
|
{{#each items}}
|
|
<li>
|
|
<b>{{this.name}}</b>
|
|
Parts price: {{this.parts}}
|
|
Set price: {{this.set}}
|
|
Difference: {{this.difference}}
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
|
|
<div class="timestamp">
|
|
Generated at {{timestamp}}
|
|
</div>
|
|
</body>
|
|
</html> |