52 lines
1.8 KiB
HTML
52 lines
1.8 KiB
HTML
{{define "app-head"}}
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{{.Title}} — SprintPadawan</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Outfit:wght@500;600;700&family=JetBrains+Mono:wght@400;500&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link rel="stylesheet" href="/static/styles/main.css" />
|
|
{{if .UseHTMX}}
|
|
<script src="/static/js/htmx.min.js" defer></script>
|
|
{{end}} {{if .UseSSE}}
|
|
<script src="/static/js/sse.js" defer></script>
|
|
{{end}}
|
|
</head>
|
|
{{end}}
|
|
|
|
{{define "auth-head"}}
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{{.Title}} — SprintPadawan</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Outfit:wght@500;600;700&family=JetBrains+Mono:wght@400;500&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link rel="stylesheet" href="/static/styles/main.css" />
|
|
</head>
|
|
{{end}}
|
|
|
|
{{define "brand-mark"}}
|
|
<a href="/" class="brand-mark">
|
|
<span class="logo-icon">⚡</span>
|
|
<span class="logo-text"><span>Sprint</span>Padawan</span>
|
|
</a>
|
|
{{end}}
|
|
|
|
{{define "session-controls"}}
|
|
<div class="topbar-user">
|
|
<div class="user-avatar">{{slice .Username 0 1}}</div>
|
|
<span class="topbar-user-name">{{.Username}}</span>
|
|
</div>
|
|
<form method="POST" action="/logout">
|
|
<button class="topbar-link-btn" type="submit">Sign Out</button>
|
|
</form>
|
|
{{end}}
|