forked from WFCD/warframe-drop-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (94 loc) · 5.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!doctype html>
<html class="dark" lang="en">
<title>Warframe Drop Data</title>
<link rel="manifest" href="drops.webmanifest">
<meta property="og:title" content="Warframe Drop Data" />
<meta property="og:description" content="A tool/API to search through Digital Extremes official Warframe drop data website." />
<meta property="og:url" content="http://drops.warframestat.us" />
<meta property="og:image" content="./logo.png" />
<meta name="theme-color" content="#23272A">
<meta name="description" content="A tool/API to search through Digital Extremes official Warframe drop data website.">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" href="./img/logo.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="search" href="./opensearch.xml" type="application/opensearchdescription+xml" title="Warframe Drop Data"/>
<link rel="dns-prefetch" href="https://cdnjs.cloudflare.com" />
<link rel="dns-prefetch" href="https://fonts.googleapis.com" />
<link rel="stylesheet" href="./styles/themes.css" />
<link rel="stylesheet" href="./styles/common.css" />
<link rel="stylesheet" href="./styles/index.css" />
<link rel="shortcut icon" href="./img/logo.png" />
<div id="no-script" style="display: flex;">
<p>
<i class="fa fa-warning"></i><br />
This website requires JavaScript.
</p>
</div>
<div id="loading" style="display: none;">
<p>
<i class="fa fa-refresh fa-spin"></i><br />
Loading, please wait...
</p>
</div>
<section>
<div class="container">
<div class="header">
<div>
<img src="img/logo.short.png" height="64" class="logo" alt="Logo">
<h5>Warframe Drop Data</h5>
<a href="./diff.html"><i class="fas fa-compress-alt"></i></a> | <a target="_blank" href="https://github.com/WFCD/warframe-drop-data#api-endpoints" rel="noopener" name="API Documentation">API Documentation</a> | <a target="_blank" href="https://github.com/WFCD/warframe-drop-data" rel="noopener" name="GitHub Repository"><i class="fab fa-github"></i></a>
</div>
<div>
<input class="searchfield" placeholder="Search here..." id="search-field" type="text" autofocus="autofocus" aria-label="Search here..." />
<select id="match-search" aria-label="Matching Search">
<option value="default">Default match</option>
<option value="exact">Exact match</option>
<option value="regex">Regex match</option>
</select>
<select id="search-type" aria-label="Search Category">
<option value="items">Items only</option>
<option value="locations">Locations only</option>
<option value="both">Items and locations</option>
</select>
<select id="display-amount" aria-label="Result Amount">
<option value="100">Show 100 items</option>
<option value="250">Show 250 items</option>
<option value="500">Show 500 items</option>
<option value="1000">Show 1000 items</option>
<option value="clem">Show all items</option>
</select>
</div>
</div>
<div class="content">
<table class="u-full-width">
<thead id="tablehead"></thead>
<tbody id="tablebody">
<tr><td class="msg">Type what you're looking for into the search above above!</td></tr>
</tbody>
</table>
</div>
</div>
</section>
<footer class="footer">
<b>NOTE</b>: This data is parsed from <a href="https://warframe-web-assets.nyc3.cdn.digitaloceanspaces.com/uploads/cms/hnfvc0o3jnfvc873njb03enrf56.html" target="_blank" rel="noopener" name="Dropsite Link">Digital Extremes' official drop data website</a>, no data mining was involved.
Last update: <span id="last-update">Unknown</span>
<div class="pull-right">
<span class="theme-mode stalker"><img src="./img/stalker.png" /></span>
<span class="theme-mode sun"><i class="fas fa-sun"></i></span>
<span class="theme-mode moon"><i class="fas fa-moon"></i></span>
<span class="purge-mode trash">
<i class="fas fa-trash" onclick="window.localStorage.removeItem('_wfdata'); load();"></i>
</span>
</div>
</footer>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway:400,300,600" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/solid.css"crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/fontawesome.css" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/brands.css" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.min.js"></script>
<script src="./js/themes.js"></script>
<script src="./js/index.js"></script>
</html>