-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (34 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>World of Tibia Archive</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Welcome to the World of Tibia archive!</h1>
<p>This website contains an archive of <strong>129,399</strong> forum posts, from <strong>14,071</strong> forum threads. This archive was made by using the CDX API from the Internet Archive ("Wayback Machine"). The URL used was "tibia.gamigo.de". World of Tibia used many different domains, such as "tibia.de" and "tibia.looki.de". Because of convenience, I kept to the "tibia.gamigo.de" domain and I found it had the most archived content.</p>
<p>The "World of Tibia archive" was made by <strong>cyph3rjo3/morshabaal</strong> on 31st of March 2024.</p>
<p>Use the very primitive search feature below. <strong>Be careful of lag!</strong></p><p>The search function is not optimized in any way. If you search for an empty string, it will return all results and be very laggy. Try be as specific as possible while searching!</p>
<p>By using the "Exact match" option, you can search for exact matches when it comes to "Authors". If this option is selected and you search for other filters ("Content", "Title") then it will perform searches for results including the exact word.</p>
<p>If you want to download all results, you download a copy of the JSON file <a href="data.json" download>here</a>. Please note that it is around <strong>65mb</strong>.</p>
<fieldset>
<legend>Search Archive</legend>
<input type="radio" id="searchContent" name="searchOption" value="content" checked>
<label for="searchContent">Search Content</label>
<input type="radio" id="searchAuthor" name="searchOption" value="author">
<label for="searchAuthor">Search Author</label>
<input type="radio" id="searchTitle" name="searchOption" value="title">
<label for="searchTitle">Search Title</label>
<br><br>
<input type="checkbox" id="exactMatchCheckbox">
<label for="exactMatchCheckbox">Exact match</label>
<br><br>
<input type="text" id="search" placeholder="Search for content...">
<button type="button" id="btnSearch">Search</button>
</fieldset>
<div id="results"></div>
<script src="./script.js" type="module"></script>
</body>
</html>