Files
warframe-center/output/template.hbs
Anatoly 1c7d4cc74e
Some checks failed
continuous-integration/drone/push Build is failing
Базовый handlebars
2022-02-18 02:47:00 +03:00

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>