-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapt.html
More file actions
107 lines (103 loc) · 3.31 KB
/
apt.html
File metadata and controls
107 lines (103 loc) · 3.31 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>KivotOS APT Repository</title>
<link rel="stylesheet" href="./styles/themes/catppuccin-latte.css" />
<link rel="stylesheet" href="./styles/themes/catppuccin-mocha.css" />
<link rel="stylesheet" href="./styles/apt.css" />
<link rel="stylesheet" href="./styles/aurora.css" />
</head>
<body>
<!-- Aurora Background Effect -->
<div class="aurora-bg" aria-hidden="true">
<div class="aurora-layer aurora-layer-1"></div>
<div class="aurora-layer aurora-layer-2"></div>
<div class="aurora-layer aurora-layer-3"></div>
<div class="aurora-grain"></div>
</div>
<div class="container">
<header class="header">
<div class="header-content">
<a
href="./index.html"
class="back-link"
aria-label="Go back to main page"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width="24"
height="24"
fill="currentColor"
class="back-arrow-icon"
>
<path
d="M10.8284 12.0007L15.7782 16.9504L14.364 18.3646L8 12.0007L14.364 5.63672L15.7782 7.05093L10.8284 12.0007Z"
></path>
</svg>
</a>
<div>
<h1>KivotOS APT Repository</h1>
<p class="subtitle">Browse packages in /apt/</p>
</div>
</div>
<button class="theme-toggle" id="themeToggle">
<img src="./assets/sun.svg" alt="Theme Toggle" />
</button>
</header>
<main>
<section class="card usage-section">
<div class="card-header">
<h3>Repository Usage</h3>
</div>
<div class="card-content">
<div class="command-box">
<code id="repo-command"
>deb [signed-by=/usr/share/keyrings/kivotos.gpg]
https://kivot-os.github.io/KivotOS-repo/ trixie main</code
>
<button
class="copy-btn"
onclick="copyCommand('repo-command', this)"
>
Copy
</button>
</div>
</div>
</section>
<section class="card file-listing">
<div class="card-header">
<h3>Browse Files</h3>
</div>
<table>
<thead>
<tr>
<th>Name</th>
<th class="hide-mobile">Last Modified</th>
<th class="hide-mobile">Size</th>
</tr>
</thead>
<tbody id="file-list">
<tr>
<td>
<span class="file-icon">📁</span>
<a href="../" class="file-link">..</a>
</td>
<td class="hide-mobile">-</td>
<td class="hide-mobile">-</td>
</tr>
<tr>
<td colspan="3" class="loading-message">
Loading repository contents...
</td>
</tr>
</tbody>
</table>
</section>
</main>
</div>
<script src="./assets/js/apt.js"></script>
</body>
</html>