···202202 return s.db.Close()203203}204204205205-func (s *State) Favicon(w http.ResponseWriter, r *http.Request) {206206- w.Header().Set("Content-Type", "image/svg+xml")207207- w.Header().Set("Cache-Control", "public, max-age=31536000") // one year208208- w.Header().Set("ETag", `"favicon-svg-v1"`)209209-210210- if match := r.Header.Get("If-None-Match"); match == `"favicon-svg-v1"` {211211- w.WriteHeader(http.StatusNotModified)212212- return213213- }214214-215215- s.pages.Favicon(w)216216-}217217-218205func (s *State) RobotsTxt(w http.ResponseWriter, r *http.Request) {219206 w.Header().Set("Content-Type", "text/plain")220207 w.Header().Set("Cache-Control", "public, max-age=86400") // one day