-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (59 loc) · 2.56 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
<!DOCTYPE html>
<html class="h-100" lang="en">
<head>
<meta charset="UTF-8">
<title>Solid App Store</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="./style.css" rel="stylesheet">
<script src="index.js"></script>
</head>
<body class="d-flex flex-column h-100">
<div class="my-5 d-lg-flex justify-content-around align-items-center">
<div class="col-lg-10 mx-md-5 mb-5">
<div class="container-fluid">
<div class="row my-3 justify-content-between align-items-center">
<div class="col-3">
<div class="d-flex align-items-center justify-content-start">
<img class="mx-2" src="https://github.com/KNowledgeOnWebScale/solid-app-store/raw/main/solid-logo.png" width="50px">
<h4 class="mx-2">App Store</h4>
</div>
</div>
<div class="col-8 align-items-center">
<div class="input-group">
<input class="form-control border-end-0 border" type="search" id="search" placeholder="Search">
<span class="input-group-append">
<button class="btn btn-outline-secondary bg-white border-start-0 border ms-n5"
type="button">
<i class="fa fa-search"></i>
</button>
</span>
</div>
</div>
</div>
<div class="row my-3 justify-content-between">
<div class="col-3 mx-2">
<h4>Categories</h4>
<div class="ms-4 mt-3" id="category-list"></div>
</div>
<div class="col-8">
<div class="col">
<h3 id="no-results-title" class="hidden">No results found</h3>
<div class="d-flex justify-content-start gap-3" id="app-list"></div>
<div class="d-flex justify-content-center my-4">
<div class="loader" id="loader"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="footer w-auto mt-auto py-3 text-black-50">
<div class="container text-center p-3">
<a class="github-href" href="https://github.com/KNowledgeOnWebScale/solid-app-store" target="_blank">
<p>Source of this Web app</p>
</a>
</div>
</footer>
</body>
</html>