Add caching headers for production, fix css for RMO

This commit is contained in:
Eli Ribble 2026-02-17 22:27:51 +00:00
parent 58da733531
commit ee7dc1dd08
No known key found for this signature in database
5 changed files with 17 additions and 10 deletions

View file

@ -2,15 +2,8 @@ package html
import (
"net/http"
"time"
)
func RenderOrError(w http.ResponseWriter, template_name string, content interface{}) {
templates.renderOrError(w, template_name, content)
}
var startedTime time.Time
func SetStartedTime() {
startedTime = time.Now()
}