2026-01-30 18:21:27 +00:00
|
|
|
package html
|
2025-11-03 12:38:47 +00:00
|
|
|
|
|
|
|
|
import (
|
2025-11-10 22:16:23 +00:00
|
|
|
"net/http"
|
2025-11-03 12:38:47 +00:00
|
|
|
)
|
|
|
|
|
|
2026-02-07 05:51:21 +00:00
|
|
|
func RenderOrError(w http.ResponseWriter, template_name string, content interface{}) {
|
|
|
|
|
templates.renderOrError(w, template_name, content)
|
2025-11-19 16:32:56 +00:00
|
|
|
}
|