2025-11-05 21:05:10 +00:00
{{template "base.html" .}}
2026-01-08 16:08:41 +00:00
{{define "title"}}Main{{end}}
2025-12-11 00:30:24 +00:00
{{define "extraheader"}}
2025-11-05 21:05:10 +00:00
{{end}}
{{define "content"}}
2026-01-07 20:47:55 +00:00
<!-- Main Content -->
< main >
2026-02-01 02:57:58 +00:00
{{ if eq .District nil }}
2026-01-07 20:47:55 +00:00
<!-- Introduction Section -->
2026-01-31 21:47:46 +00:00
< section class = "py-2 bg-primary text-white" >
2026-01-31 16:23:58 +00:00
< div class = "banner-container d-flex justify-content-center" >
2026-01-31 21:47:46 +00:00
< img class = "banner" src = "/static/img/rmo/banner.jpg" / >
2026-01-07 20:47:55 +00:00
< / div >
< / section >
2026-02-01 02:57:58 +00:00
{{ else }}
<!-- Introduction Section -->
< section class = "py-5 bg-primary text-white" >
< div class = "container" >
< div class = "row justify-content-center" >
< div class = "col-lg-10" >
< h2 class = "text-center mb-4" > Report a Mosquito Problem< / h2 >
< p class = "lead text-center" > Submit a report to help reduce mosquito activity in your neighborhood.< / p >
< p class = "lead text-center" > Report Mosquitoes Online works with local mosquito control agencies to receive public reports. For this area, mosquito control services are provided by Delta Mosquito and Vector Control District.< / p >
< img class = "district-logo" src = "{{.District.URLLogo}}" / >
< / div >
< / div >
< / div >
< / section >
{{ end }}
2026-01-07 20:47:55 +00:00
<!-- Services Section -->
< section class = "py-5" >
< div class = "container" >
< h3 class = "text-center mb-4" > How Can We Help You Today?< / h3 >
< div class = "row g-4" >
< div class = "col-md-4" >
< div class = "card service-card h-100" >
< div class = "card-body text-center" >
< div class = "mb-3" >
2026-01-30 20:14:10 +00:00
{{ template "mosquito-color.svg" }}
2026-01-07 20:47:55 +00:00
< / div >
2026-01-30 20:14:10 +00:00
< h4 class = "card-title" > Report Mosquito Nuisance< / h4 >
< p class = "card-text" > Report areas with high adult mosquito activity causing discomfort or concern.< / p >
< a href = "{{ .URL.Nuisance }}" class = "btn btn-primary mt-3" > Report Problem< / a >
2026-01-07 20:47:55 +00:00
< / div >
< / div >
2025-11-05 22:05:31 +00:00
< / div >
2026-01-07 20:47:55 +00:00
< div class = "col-md-4" >
< div class = "card service-card h-100" >
< div class = "card-body text-center" >
< div class = "mb-3" >
2026-01-30 20:17:29 +00:00
{{ template "pond-color.svg" }}
2026-01-07 20:47:55 +00:00
< / div >
2026-01-30 20:14:10 +00:00
< h4 class = "card-title" > Report Standing Water< / h4 >
< p class = "card-text" > Report any water that has been sitting for several days, where mosquitoes can live.< / p >
< a href = "{{ .URL.Water }}" class = "btn btn-primary mt-3" > Report Source< / a >
2026-01-07 20:47:55 +00:00
< / div >
< / div >
2025-11-05 22:05:31 +00:00
< / div >
2026-01-07 20:47:55 +00:00
< div class = "col-md-4" >
< div class = "card service-card h-100" >
< div class = "card-body text-center" >
< div class = "mb-3" >
2026-01-30 20:17:29 +00:00
{{ template "check-report-color.svg" }}
2026-01-07 20:47:55 +00:00
< / div >
2026-01-30 20:14:10 +00:00
< h4 class = "card-title" > Follow-up or Check Status< / h4 >
< p class = "card-text" > Check on a previous request or view current mosquito activity in your area.< / p >
< a href = "{{ .URL.Status }}" class = "btn btn-primary mt-3" > Get Status< / a >
2026-01-07 20:47:55 +00:00
< / div >
< / div >
2025-11-05 22:05:31 +00:00
< / div >
2026-01-30 20:14:10 +00:00
2025-11-05 22:05:31 +00:00
< / div >
2026-01-07 20:47:55 +00:00
< / div >
< / section >
< / main >
2025-11-05 21:05:10 +00:00
{{end}}