-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (66 loc) · 2.39 KB
/
index.html
File metadata and controls
72 lines (66 loc) · 2.39 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
title: Packages
subtitle: Centralized storage for release assets from LizardByte repositories
layout: page
full-width: true
after-content:
- donate.html
- support.html
css:
- /packages/assets/css/packages.css
js:
- /packages/assets/js/app.js
---
<div class="container-fluid">
<div class="row justify-content-center mb-4">
<div class="col-md-8 col-lg-6">
<input type="text" id="searchInput" class="form-control form-control-lg" placeholder="Search repositories and releases...">
</div>
</div>
<div class="row justify-content-center mb-4">
<div class="col-auto">
<div class="form-check form-switch">
<input class="form-check-input" type="checkbox" id="showArchivedToggle">
<label class="form-check-label" for="showArchivedToggle">
Show archived repositories
</label>
</div>
</div>
</div>
<div class="row justify-content-center mb-4">
<div class="col-auto">
<div class="card h-100 shadow border-0 rounded-0">
<div class="card-body p-4 rounded-0 text-center">
<h5 class="card-title text-info" id="repoCount">-</h5>
<p class="card-text">Repositories</p>
</div>
</div>
</div>
<div class="col-auto">
<div class="card h-100 shadow border-0 rounded-0">
<div class="card-body p-4 rounded-0 text-center">
<h5 class="card-title text-info" id="releaseCount">-</h5>
<p class="card-text">Releases</p>
</div>
</div>
</div>
<div class="col-auto">
<div class="card h-100 shadow border-0 rounded-0">
<div class="card-body p-4 rounded-0 text-center">
<h5 class="card-title text-info" id="assetCount">-</h5>
<p class="card-text">Assets</p>
</div>
</div>
</div>
</div>
<div class="row" id="repositoryGrid">
<div class="col-12 text-center fst-italic py-5">Loading repository data...</div>
</div>
<div class="row justify-content-center mt-5">
<div class="col-auto">
<div class="border-top pt-3 small text-center">
Last updated: <span id="updateTime">-</span>
</div>
</div>
</div>
</div>