Add branded header for nuisance report

This commit is contained in:
Eli Ribble 2026-01-24 21:29:24 +00:00
parent 9aee938e30
commit 65c3e8ee51
No known key found for this signature in database
4 changed files with 28 additions and 9 deletions

View file

@ -0,0 +1,13 @@
{{define "header"}}
<header class="navbar navbar-expand-lg navbar-light bg-white shadow-sm">
<div class="container">
<div class="d-flex align-items-center">
<a class="navbar-brand d-flex align-items-center" href="/">
<img src="{{.District.URLLogo}}" style="height: 48px;" alt="District logo"></img>
</a>
<h1 class="mb-0 ms-3">{{.District.Name}}</h1>
</div>
</div>
</header>
{{end}}