-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 791 Bytes
/
index.html
File metadata and controls
30 lines (27 loc) · 791 Bytes
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
<!DOCTYPE html>
<html lang=en>
<head>
<title>Home - Diablo II: Resurrected Data File Guide</title>
<link rel="icon" type="image/x-icon" href="./media/DiabloII.ico"/>
<link rel="stylesheet" href="./style/main.css" />
</head>
<body>
<div id="page">
<nav id="site-sidebar" class="sidebar"></nav>
<div class="content">
<h1>Home</h1>
<p>
The new Data Guide is currently a work in progress.
</p>
</div>
</div>
<script src="./data/siteIndex.js"></script>
<script src="./data/search.js"></script>
<script src="./script/siteSidebar.js"></script>
<script>
populateSiteSidebar(".", siteIndex);
</script>
<footer>
</footer>
</body>
</html>