This commit is contained in:
41
output/template.hbs
Normal file
41
output/template.hbs
Normal file
@@ -0,0 +1,41 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user