fix blocked domains search/list

This commit is contained in:
2025-12-06 09:58:03 +00:00
parent 7c0e28882e
commit 99c005e4d2
5 changed files with 95 additions and 117 deletions
+3 -3
View File
@@ -8,13 +8,13 @@
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen flex flex-col">
{{ template "notifications" . }}
<header class="bg-gray-800 p-4">
<header class="bg-gray-800 p-4 fixed top-0 w-full z-10">
<nav class="flex justify-between">
<a href="/" class="text-xl font-bold">{{ .AppName }}</a>
{{ if .Authenticated }}
<ul class="flex space-x-4">
<li><a href="/urllists">URL Lists</a></li>
<li><a href="/domains">Domains</a></li>
<li><a href="/domains">Blocked Domains</a></li>
<li><a href="/logs">Logs</a></li>
<li><a href="/profile">Profile</a></li>
<li><a href="/logout">Logout</a></li>
@@ -22,7 +22,7 @@
{{ end }}
</nav>
</header>
<main class="flex-grow container mx-auto p-4">
<main class="flex-grow container mx-auto p-4 pt-20">
{{ block "content" . }}{{ end }}
</main>
<footer class="bg-gray-800 p-4 text-center">