fix blocked domains search/list
This commit is contained in:
+3
-3
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user