-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (48 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MCJsScripts</title>
<script defer src="./src/main.js" type="module"></script>
</head>
<body class="bg-background text-white">
<section id="pkgBrowser" class="hidden">
<header>
<div class="bg-primary grid grid-cols-2 items-center m-3 p-2 justify-center rounded-md">
<span class="text-3xl inline">
<a class="font-bold lg:mr-3" href="/">JSPM</a><span class="hidden lg:inline border-l-2 pl-3">JsScripts Package Manager</span>
</span>
<div class="flex flex-row">
<input type="text" placeholder="Search by name or tags..." id="pkgSearch" class="bg-secondary p-2 rounded-l-lg w-full outline-1"/>
<button class="bg-tertiary rounded-r-lg px-2">
<img src="./media/search.svg" alt="" class="w-5" />
</button>
</div>
</div>
</header>
<main>
<div class="flex flex-col w-full h-full p-5 gap-8" id="pkgContainer"></div>
</main>
</section>
<section id="pkgPage" class="hidden">
<header>
<div class="bg-primary grid grid-cols-2 items-center m-3 p-2 justify-center rounded-md">
<span class="text-3xl inline">
<a class="font-bold lg:mr-3" href="/">JSPM</a><span class="hidden lg:inline border-l-2 pl-3">JsScripts Package Manager</span>
</span>
<div class="ml-auto">
<a href="/">
<img src="./media/back.svg" alt="" class="w-11 p-3 bg-secondary rounded-lg" />
</a>
</button>
</div>
</header>
</section>
<footer class="md:fixed md:flex flex-row gap-5 bottom-0 right-0 bg-tertiary rounded-t-lg shadow-md w-full p-2 text-sm md:text-md text-gray" style="display: none;">
<p>JsScripts by <a href="https://github.com/BlazeMCworld">BlazeMCWorld</a></p>
<p>JsScripts Package Manager by <a href="https://github.com/UserUNP">UserUNP</a> and <a href="https://github.com/RedVortexDev">RedVortex</a></p>
<p>and packages by you!</p>
</footer>
</body>
</html>