103 lines
3.5 KiB
Handlebars
103 lines
3.5 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">
|
|
<meta name="description" content="Find profits in the Warframe market">
|
|
<meta name="keywords" content="warframe,market,buy,sell,trade,mod,blueprint,syndicate,relic,order,auction,riven,wts,wtb,sales,worth,platinum,price,checking">
|
|
<link rel="canonical" href="https://warframe.center/">
|
|
<link rel="alternate" hreflang="en" href="https://warframe.center/">
|
|
<link rel="alternate" hreflang="ru" href="https://warframe.center/ru/">
|
|
<link rel="alternate" hreflang="uk" href="https://warframe.center/ua/">
|
|
<link rel="alternate" hreflang="x-default" href="https://warframe.center/">
|
|
<meta property="og:title" content="Warframe Center">
|
|
<meta property="og:description" content="Find profits in the Warframe market">
|
|
<meta property="og:url" content="https://warframe.center">
|
|
<meta property="og:image" content="https://warframe.center/assets/warframe_logo.png">
|
|
<meta property="og:site_name" content="Warframe Center">
|
|
<meta property="og:locale" content="en">
|
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>Warframe Center</title>
|
|
|
|
<!-- Yandex.Metrika counter -->
|
|
<script type="text/javascript" >
|
|
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
|
|
m[i].l=1*new Date();k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
|
|
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
|
|
|
|
ym(87671663, "init", {
|
|
clickmap:true,
|
|
trackLinks:true,
|
|
accurateTrackBounce:true
|
|
});
|
|
</script>
|
|
<noscript><div><img src="https://mc.yandex.ru/watch/87671663" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
|
|
<!-- /Yandex.Metrika counter -->
|
|
</head>
|
|
<body>
|
|
<div class="hero">
|
|
<img id="gunner1" src="./assets/gunner1.png">
|
|
<div class="main">
|
|
<img class="logo" src="./assets/warframe_logo.png">
|
|
<div class="text">
|
|
<h1>{{t.title}}</h1>
|
|
<p>{{t.description}}</p>
|
|
</div>
|
|
</div>
|
|
<img id="gunner2" src="./assets/gunner2.png">
|
|
|
|
<div class="languages">
|
|
{{#each languages}}
|
|
<a
|
|
href="/{{this.link}}"
|
|
class="{{#if_eq ../t.link this.link}}selected{{/if_eq}}"
|
|
>
|
|
<img src="./assets/languages/{{@key}}.png">
|
|
</a>
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="main-column">
|
|
<div class="controls">
|
|
<label for="min-difference">{{t.filter_by_difference}}</label>
|
|
<input type="range" min="1" max="60" value="1" id="min-difference">
|
|
<span id="filter-value">1</span>
|
|
</div>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>{{t.name}}</th>
|
|
<th>{{t.parts_price}}</th>
|
|
<th>{{t.set_price}}</th>
|
|
<th>{{t.difference}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="items">
|
|
{{#each items}}
|
|
<tr data-difference="{{this.difference}}">
|
|
<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}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="timestamp">
|
|
{{t.generated_at}} {{timestamp}}
|
|
</div>
|
|
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html>
|