27 lines
643 B
HTML
27 lines
643 B
HTML
{{ define "layout" }}
|
|
<!DOCTYPE html>
|
|
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@3.3.5/dist/tailwind.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="/static/css/site.css">
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>SynLotto</title>
|
|
</head>
|
|
<body>
|
|
<div class="topbar">
|
|
{{ if .User }}
|
|
<p>Hello, {{ .User.Username }} | <a href="/logout">Logout</a></p>
|
|
{{ else }}
|
|
<p><a href="/login">Login</a></p>
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ if .Flash }}
|
|
<div class="flash">{{ .Flash }}</div>
|
|
{{ end }}
|
|
|
|
{{ template "content" . }}
|
|
</body>
|
|
</html>
|
|
{{ end }}
|