forked from security/hakurei
27 lines
943 B
HTML
27 lines
943 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="static/index.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Hakurei PkgServer</h1>
|
|
|
|
<table id="pkg-list">
|
|
<tr><td>Loading...</td></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>
|
|
<p>©<a href="https://hakurei.app/">Hakurei</a> (<span id="hakurei-version">unknown</span>). Licensed under the MIT license.</p>
|
|
</footer>
|
|
</html> |