This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (46 loc) · 2.38 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Game Boy Discord Marketplace</title>
<script src="script/vue.min.js"></script>
<script id="devload" src="script/devload.js"></script>
<script src="script/marketplace.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style/style.css" />
<link rel="shortcut icon" type="image/png" href="img/favicon.png"/>
</head>
<body>
<div id="app" @click="closeAll">
<div class="container-xl">
<header>
<h1>Game Boy Discord Marketplace</h1>
<noscript>
Looks like you have JS disabled. This tool needs javascript to function!
</noscript>
This is the website for the Game Boy discord's marketplace. All the listings here are items pinned in the <code>#marketplace</code> channel. Listings update hourly! To specify your listing type, use one or more of these emoji:
<img class="emoji-img" src="img/wts_emoji.png"/><code>:WTS:</code>,
<img class="emoji-img" src="img/selling_emoji.png"/><code>:Selling:</code>,
<img class="emoji-img" src="img/wtb_emoji.png"/><code>:WTB:</code>,
<img class="emoji-img" src="img/buying_emoji.png"/><code>:Buying:</code>,
<img class="emoji-img" src="img/wtt_emoji.png"/><code>:WTT:</code>,
<img class="emoji-img" src="img/trading_emoji.png"/><code>:Trading:</code>.
</header>
<main>
<div>
<filtering :listings="listings" ref="filtering" :filtered-length="safeFilteredListingsLength" @filtered-listings-updated="updateFilteredListings" :initial-val="querySearch"></filtering>
</div>
<hr>
<div>
<listing-card :ref="listing.messageId" v-on:close-all="closeAll" v-for="(listing, index) in filteredListings" :listing="listing" :key="listing.messageId"></listing-card>
</div>
<div v-if="safeFilteredListingsLength == 0" class="no-listings">
Nothing to show!
</div>
</main>
</div>
</div>
<script src="script/app.js"></script>
</body>
</html>