-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (39 loc) · 2.12 KB
/
index.html
File metadata and controls
48 lines (39 loc) · 2.12 KB
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
<!DOCTYPE html>
<html lang="en-US" class="light">
<script src="https://cdnjs.cloudflare.com/ajax/libs/list.js/2.3.1/list.min.js" defer></script>
<script src="./main.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" defer>
<link rel="stylesheet" type="text/css" href="./main.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<meta name="description" content="Webpage that displays the finished World Smiths worlds and allows for searching and sorting.">
<title>World Smiths</title>
<link rel="icon" href="logo.svg" alt="">
<body id="WSapp" onload="load()">
<object data="logo.svg" id="WSlogo">World Smiths Logo</object>
<h1 id="WSheading">World Smiths</h1>
<article id="WSabout">
World Smiths is a community of Foundry VTT world builders, aiming to provide high-quality world packages and
harbor an inclusive community dedicated to providing help and facilitating collaboration on world content.
</article>
<main id="WSworld-list">
<section id="WSsupport">If you have any questions, issues, or would like to help the project, please come by
our
<a href="https://discord.gg/2YCFD8fxG7" rel="noreferrer" target="_blank"> discord server.</a>
</section>
<nav id="WSnavbar">
<input id="WSsearchBox" type="search" placeholder="Search" class="fuzzy-search" />
<button id="WScolor-toggle" title="Toggle Theme"></button>
</nav>
<nav id="WSsortBar">
<button class="sort" data-sort="name">Name</button>
<button class="sort" data-sort="version" data-default-order="desc">Version</button>
<button class="sort" data-sort="size">File size</button>
</nav>
<ul id="WSresults" class="list"></ul>
</main>
<button onclick="topFunction()" id="WSgotoTop" title="Go to top">Top</button>
<iframe id="WSdiscord" title="Discord Server" width="max-content" height="300" allowtransparency="true"
sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
</body>
</html>