Add person and family detail pages, no-cache responses

This commit is contained in:
Ian Gulliver
2026-08-15 20:39:13 -07:00
parent a37f148657
commit 09888701b3
4 changed files with 583 additions and 11 deletions
+2
View File
@@ -34,6 +34,8 @@ func Register(mux *http.ServeMux, cache *Cache) {
for _, section := range sections {
mux.HandleFunc("GET /"+section, a.page)
}
mux.HandleFunc("GET /people/{email}", a.page)
mux.HandleFunc("GET /families/{key}", a.page)
mux.HandleFunc("GET /dl/", a.legacyRedirect)
mux.HandleFunc("GET /api/directory/model", a.model)
}