blob: c041a3f940b6024a5eddfb5a25c8d0694a3bf770 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Docs</title>
<link rel="stylesheet" href="/static/css/output.css">
</head>
<body class="min-h-screen bg-gray-900 text-slate-200 p-4">
<div class="max-w-2xl mx-auto pt-6">
<a href="/" class="text-sm text-slate-400 hover:text-slate-200 mb-4 inline-block">← Dashboard</a>
<h1 class="font-semibold text-xl mb-6">Docs</h1>
{{range .Categories}}
<div class="bg-gray-800 rounded-xl p-5 mb-4">
<h2 class="font-semibold text-base mb-3 capitalize text-slate-100">{{.Name}}</h2>
{{if .Entries}}
<ul class="space-y-1">
{{range .Entries}}
<li><a href="{{.URL}}" class="text-sm text-blue-400 hover:text-blue-300">{{.Name}}</a></li>
{{end}}
</ul>
{{else}}
<p class="text-sm text-slate-500">No files yet.</p>
{{end}}
</div>
{{end}}
</div>
</body>
</html>
|