-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (51 loc) · 2.45 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="AppImage applications repository">
<title>Appimage repository</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="shortcut icon" href="./favicon.ico">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" crossorigin="anonymous"></script>
<style>
.appbox {
border: solid 1px;
border-color:#dee2e6;
padding:5px;
margin: 3px;
width: 4.5cm;
height: 4.5cm;
text-align: center;
}
.appimg {
width: 1.5cm;
height: 1.5cm;
}
</style>
</head>
<body>
<div class="container">
<div id="messages"></div>
<h1><img src="./logo.svg" /> AppImage repository</h1>
<p class=""><a href="http://appimage.org">AppImage</a> applications for Linux without installation.</p>
<p> This <b>is</b> a distribution of software.
As Linux users, we like to find all applications in a single place, and download/install them with a click.
This is not possible with traditional <a href="https://appimage.github.io/">AppImageHub</a>.
</p>
<div id="controls">
<p><input class="form-control" id="search_input" placeholder="Search app names or descriptions..."></input></p>
<p><select class="form-control" id="os_select">
<option value="linux" selected>Linux</option>
<option value="darwin">MacOS</option>
<option value="win32">Windows</option>
</select></p>
<p>If you prefer, you can <button class="btn btn-secondary" role="button" id="btn_multiselect">Generate a download script</button>.
<span class="d-none" id="p_generate">Select desired apps, then press <button class="btn btn-primary" role="button" id="btn_generate">Generate</button>,
or <button class="btn btn-danger" role="button" id="btn_dont_generate">Cancel</button>.</span>
</p>
</div>
<div id="apps_container">Loading...</div>
</div>
<script src="./scripts.js"></script>
</body>
</html>