forked from Sixish/Odyssey
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Odyssey.php
91 lines (77 loc) · 2.55 KB
/
Odyssey.php
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
<?php
$debug_mode = isset($_REQUEST['debug']);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/x-icon" href="Odyssey/Images/Favicon128.ico" />
<title>Odyssey</title>
<?php
if (!$debug_mode) {
include "Odyssey/Includes/ScriptsHead.php";
} else {
include "Odyssey/Includes/ScriptsHeadRelease.php";
}
?>
<!-- CSS -->
</head>
<body>
<h1 id="ContentHeader">Odyssey</h1>
<!-- Large Odyssey Minimap -->
<?php include "Odyssey/Includes/LargeMinimap.php"; ?>
<!-- Small Odyssey Minimap -->
<div id="OdysseyMinimap">
<canvas id="OdysseyMinimapCanvas" height="127" width="127">Your browser lacks HTML5Canvas support.</canvas>
</div>
<!-- Navigation Cursor -->
<?php #include "Odyssey/Includes/OdysseyNavigator.php"; ?>
<!-- Item Info -->
<?php include "Odyssey/Includes/ItemInfo.php"; ?>
<!-- Status -->
<?php include "Odyssey/Includes/Status.php"; ?>
<div id="OdysseyToolRow">
<div id="OdysseyToolRowIcon">
<div class="OdysseyBoxBackground"></div>
<a id="OdysseyOpenToolRow" href="#" class="tool-link">
<img src="Odyssey/Images/Icon-Extra.png" />
</a>
</div>
<div id="OdysseyToolNavigation">
<div class="OdysseyBoxBackground"></div>
<a id="OdysseyOpenNavigation" href="#" class="tool-link">
<img src="Odyssey/Images/Icon-Menu.png" alt="Navigation" />
<span class="link-label">Navigation</span>
</a>
</div>
<div id="OdysseyToolMinimap">
<div class="OdysseyBoxBackground"></div>
<a id="OdysseyOpenMinimap" href="#" class="tool-link">
<img src="Odyssey/Images/Icon-Worldmap.png" alt="Worldmap" />
<span class="link-label">Worldmap</span>
</a>
</div>
<div id="OdysseyToolSearch">
<div class="OdysseyBoxBackground"></div>
<a id="OdysseyOpenSearch" href="#" class="tool-link">
<img src="Odyssey/Images/Icon-Search.png" alt="Search" />
<span class="link-label">Search</span>
</a>
</div>
</div>
<!-- Odyssey Navigation List -->
<?php include "Odyssey/Includes/OdysseyNavList.php"; ?>
<!-- Odyssey Search -->
<?php include "Odyssey/Includes/OdysseySearch.php"; ?>
<div id="map-container">
<div id="map">
<!-- Odyssey Map Viewport -->
<?php include "Odyssey/Includes/OdysseyMapViewport.php"; ?>
<!-- Odyssey Map Grid -->
<?php #include "Odyssey/Includes/MapGrid.php"; ?>
</div>
</div>
<?php include "Odyssey/Includes/" . (!$debug_mode ? "ScriptsFoot.php" : "ScriptsCompiled.php"); ?>
</body>
</html>