This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
55 lines (55 loc) · 2.42 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
<!DOCTYPE html>
<html>
<head>
<title>Archnemesis mods recipe browser | Path Of Exile</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<link href="https://web.poecdn.com/image/favicon/apple-touch-icon.png?v=1" rel="apple-touch-icon" />
<link href="https://web.poecdn.com/image/favicon/apple-touch-icon.png?v=1" rel="apple-touch-icon" sizes="180x180" />
<link href="https://web.poecdn.com/image/favicon/favicon-32x32.png?v=1" rel="icon" sizes="32x32" type="image/png" />
<link href="https://web.poecdn.com/image/favicon/favicon-16x16.png?v=1" rel="icon" sizes="16x16" type="image/png" />
<link href="https://web.poecdn.com/image/favicon/site.webmanifest?v=2" rel="manifest" />
<link href="https://web.poecdn.com/image/favicon/safari-pinned-tab.svg?v=1" rel="mask-icon" />
<link href="https://web.poecdn.com/image/favicon/favicon.ico?v=1" rel="shortcut icon" />
<link href="styles.css" rel="stylesheet" type="text/css" />
<script src="view.js?v=0.3" defer></script>
</head>
<body>
<div class="layout">
<div class="box">
<div class="filters">
<div>
<button type="button" class="filter-droponly">Hide drop-only</button>
<button type="button" class="filter-recipeonly">Hide recipe-only</button>
<button type="button" class="filter-craftable">Show craftable-only</button>
</div>
<div>
<button type="button" class="filter-select-owned">Select owned</button>
<button type="button" class="filter-clear-owned" style="display: none;">Clear all</button>
<input type="search" class="filter-search" placeholder="Search..." />
</div>
</div>
<div class="mod-list"></div>
</div>
<div class="box">
<div class="detail-header">
<img class="detail-icon" src="" />
<h1 class="detail-tag"></h1>
</div>
<div class="detail-description"></div>
<div class="detail-effect"></div>
<div class="detail-rewards"></div>
<div class="detail-section detail-used-in" style="display: none;">
<h2 class="detail-label">Used in</h2>
<div class="detail-used-in-list"></div>
</div>
<div class="detail-section detail-recipe" style="display: none;">
<h2 class="detail-label">Recipe</h2>
<div class="detail-recipe-container2">
<div class="detail-recipe-container"></div>
</div>
</div>
</div>
</div>
</body>
</html>