43 lines
1.6 KiB
HTML
43 lines
1.6 KiB
HTML
<!doctype html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{.Title}}</title>
|
|
<link rel="stylesheet" href="/static/css/app.css?v={{.BuildHash}}">
|
|
<link rel="stylesheet" href="/static/ui/ui.css?v={{.BuildHash}}">
|
|
<script src="https://unpkg.com/htmx.org@1.9.12"></script>
|
|
<script type="module" src="/static/ui/ui.esm.js?v={{.BuildHash}}"></script>
|
|
</head>
|
|
<body>
|
|
<nav class="relative flex items-center justify-between border-b border-gray-300 bg-white px-6 py-4 transition-all md:px-16 lg:px-24 xl:px-32">
|
|
<a href="/" class="text-lg font-semibold text-slate-800">Trustcontact</a>
|
|
|
|
<div class="hidden items-center gap-8 sm:flex">
|
|
{{if and .CurrentUser (eq .CurrentUser.Role "admin")}}
|
|
<a href="/admin" class="text-slate-700 hover:text-slate-900 {{if eq .NavSection "admin"}}font-semibold{{end}}">Admin</a>
|
|
{{end}}
|
|
|
|
{{if .CurrentUser}}
|
|
<form action="/logout" method="post">
|
|
<button type="submit" class="cursor-pointer rounded-full bg-indigo-500 px-8 py-2 text-white transition hover:bg-indigo-600">
|
|
Logout
|
|
</button>
|
|
</form>
|
|
{{else}}
|
|
<a href="/login" class="cursor-pointer rounded-full bg-indigo-500 px-8 py-2 text-white transition hover:bg-indigo-600">
|
|
Login
|
|
</a>
|
|
{{end}}
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="mx-auto my-5 max-w-5xl px-4">
|
|
{{template "_flash.html" .}}
|
|
<div class="rounded-xl bg-white p-5 shadow-sm">
|
|
{{template "content" .}}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|