A vibe coded tangled fork which supports pijul.
1{{define "base"}}
2<!DOCTYPE html>
3<html>
4<head>
5 <title>KnotMirror Admin</title>
6 <script src="https://cdn.jsdelivr.net/npm/htmx.org@2.0.8/dist/htmx.min.js" integrity="sha384-/TgkGk7p307TH7EXJDuUlgG3Ce1UVolAOFopFekQkkXihi5u/6OCvVKyz1W+idaz" crossorigin="anonymous"></script>
7 <style>
8 nav { margin-bottom: 20px; border-bottom: 1px solid #ccc; padding: 10px 0; }
9 nav a { margin-right: 15px; }
10 table { width: 100%; border-collapse: collapse; }
11 th, td { text-align: left; padding: 8px; border: 1px solid #ddd; }
12 .pagination { margin-top: 20px; }
13 .filters { background: #f4f4f4; padding: 15px; margin-bottom: 20px; }
14 </style>
15</head>
16<body>
17 <nav>
18 <a href="/repos">Repositories</a>
19 <a href="/hosts">Knot Hosts</a>
20 </nav>
21 <main id="main">
22 {{template "content" .}}
23 </main>
24</body>
25</html>
26{{end}}