-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (55 loc) · 2.07 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
<!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>Risk of Rain 2 Synergies</title>
<link rel="stylesheet" href="css/style.css">
</head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JEZ2XK96VB"></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag(){dataLayer.push(arguments)}
gtag('js', new Date())
gtag('config', 'G-JEZ2XK96VB')
</script>
<body>
<script src="js/main.js" type="module" async></script>
<div id="app">
<div id="body-shadow"></div>
<div id="container">
<div id="display-pane" class="pane corners">
<div class="heading"></div>
<div class="info">
<div class="content">
<div id="item-description" class="block"></div>
<div id="item-synergies" class="block"></div>
</div>
</div>
</div>
<div id="select-pane" class="pane corners">
<div class="heading">
<h2>Item Select</h2>
<p>Choose an item to view its synergies</p>
<div id="search-wrapper">
<input type="text" id="item-search" placeholder="Search..." autocomplete="off" spellcheck="false">
<p id="result-count"></p>
</div>
</div>
<div class="content">
<ul id="item-select">
<li id="no-results">
<p>No results found...</p>
</li>
</ul>
</div>
</div>
</div>
<div id="footer">
<p>Made by tatiematie, v<span id="version"></span></p>
<p>Not affiliated with Hopoo Games, Risk of Rain 2 © <span id="copyrightYear"></span> Hopoo Games</p>
</div>
</div>
</body>
</html>