-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (103 loc) · 4.81 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
109
110
111
112
113
114
115
116
117
118
119
120
121
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-125096878-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-125096878-2');
</script>
<title>MOGBOARD</title>
<link rel="shortcut icon" type="image/png" href="https://raw.githubusercontent.com/viion/marketboard/master/favicon.png">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,700" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/numeral.js/2.0.6/numeral.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vanilla-lazyload/8.15.0/lazyload.min.js"></script>
</head>
<body>
<main>
<nav>
<div class="logo">
<img src="mog.png">
<h1><span>MOG</span>BOARD</h1>
</div>
<!-- Server box -->
<div class="server">
<select class="server-select-box"></select>
</div>
<hr>
<!-- Market Categories -->
<div class="market-categories"></div>
<footer>
<p>
<a href="https://github.com/viion/marketboard" target="_blank">GitHub Code</a>
</p>
<p>
<a href="https://xivapi.com/docs/Market" target="_blank">Market APi Docs</a>
</p>
<p style="padding: 0 15px;">
ALL FINAL FANTASY XIV CONTENT IS PROPERTY OF SQUARE ENIX CO., LTD
</p>
</footer>
</nav>
<section>
<!-- Search -->
<!-- hr -->
<div class="search">
<input type="search" placeholder="Search">
<div class="search-results"></div>
</div>
<div class="home on">
<h1>Welcome to MogBoard!</h1>
<p>
<strong>MogBoard</strong> is a small one page site that provides
real-time access to the FFXIV Market Board for any server**,
any time. The page is fully open source and uses XIVAPI.com to
interact with the Companion API.
</p>
<p>
If you are interested in using Market Board information on your site, please
have a look at the docs here:
<a href="https://xivapi.com/docs/Market" target="_blank">XIVAPI Market</a>
</p>
<p>
If you fancy messing with this page and hosting your own, you can find
the source code here:
<a href="https://github.com/viion/marketboard" target="_blank">Github: viion/marketboard</a>
</p>
<br><br>
<p>
<small>ALL FINAL FANTASY XIV CONTENT IS PROPERTY OF SQUARE ENIX CO., LTD</small>
</p>
<hr>
<p>** Unfortunately, due to server congestions the following servers will not work:</p>
<ul>
<li>[NA] Balmung</li>
<li>[JP] Gungnir</li>
<li>[JP] Bahamut</li>
<li>[JP] Chocobo</li>
<li>[JP] Mandragora</li>
<li>[JP] Shinryu</li>
</ul>
</div>
<div class="content">
<div class="market-category-stock-ui">
<!-- Market Stock Listing (Item+Quantity) -->
<div class="market-category-stock"></div>
</div>
<div class="item-market-ui">
<!-- Item Info -->
<div class="item-info"></div>
<!-- Market Prices for selected item -->
<div class="market-item-prices"></div>
<!-- Market Price History for selected item -->
<div class="market-item-history"></div>
</div>
</div>
</section>
</main>
<script src="./app.js"></script>
</body>
</html>