26 lines
1005 B
HTML
26 lines
1005 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="static/style.css">
|
|
<title>Hakurei PkgServer</title>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
|
<script src="static/index.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Hakurei PkgServer</h1>
|
|
|
|
<table id="pkg-list">
|
|
<tr><th>Status</th><th>Name</th><th>Version</th></tr>
|
|
</table>
|
|
<p>Showing entries <span id="entry-counter"></span>.</p>
|
|
<span class="bottom-nav"><a href="javascript:prevPage()">« Previous</a> <span id="page-number">1</span> <a href="javascript:nextPage()">Next »</a></span>
|
|
<span><label for="count">Entries per page:</label><select name="count" id="count">
|
|
<option value="10">10</option>
|
|
<option value="25">25</option>
|
|
<option value="50">50</option>
|
|
<option value="100">100</option>
|
|
</select></span>
|
|
</body>
|
|
<footer>© <a href="https://hakurei.app/">Hakurei</a>. Licensed under the MIT license.</footer>
|
|
</html> |