Add Go WireGuard panel with PostgreSQL 17 and Dokploy compose.

This commit is contained in:
2026-07-29 09:15:00 +03:00
parent 370e2455d4
commit 31ce2af622
25 changed files with 2423 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{{define "home.html"}}
<!DOCTYPE html>
<html lang="ru">
<head>
{{template "layout_head" .}}
<title>{{siteName}}</title>
</head>
<body>
<div class="bg-pattern"></div><div class="bg-glow"></div>
<div class="wrap">
<div class="nav">
<strong class="title">{{siteName}}</strong>
<span style="flex:1"></span>
{{if .User}}
<a href="/admin">Админка</a>
<a href="/logout">Выход</a>
{{else}}
<a href="/login">Вход</a>
{{end}}
</div>
<div class="card">
<h1>{{siteName}}</h1>
<p class="muted" style="margin:1rem 0 1.5rem">WireGuard панель на Go + PostgreSQL 17</p>
<a class="btn" href="/login">Войти в админку</a>
</div>
</div>
</body>
</html>
{{end}}