diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2025-01-03 02:06:49 -0800 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2025-01-03 02:06:49 -0800 |
commit | 15c05029129afdc2a3f7e6b2c36e93d297b3de73 (patch) | |
tree | 0859d5a197e4943ec3b34a8668451d83c80f9e93 /template/api | |
parent | 7b7cc300f9ad8be13be21fd18e61d94fd8272208 (diff) | |
download | oldinfra-15c05029129afdc2a3f7e6b2c36e93d297b3de73.tar.gz oldinfra-15c05029129afdc2a3f7e6b2c36e93d297b3de73.zip |
fix ssl
Diffstat (limited to 'template/api')
-rw-r--r-- | template/api/template/template.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/api/template/template.go b/template/api/template/template.go index 9190f29..a5db3d6 100644 --- a/template/api/template/template.go +++ b/template/api/template/template.go @@ -43,7 +43,7 @@ func renderTemplate(context *types.RequestContext, templateName string, showBase func TemplateContinuation(path string, showBase bool) types.Continuation { return func(context *types.RequestContext, req *http.Request, resp http.ResponseWriter) types.ContinuationChain { return func(success types.Continuation, failure types.Continuation) types.ContinuationChain { - html, err := renderTemplate(context, path, true) + html, err := renderTemplate(context, path, showBase) if errors.Is(err, os.ErrNotExist) { resp.WriteHeader(404) html, err = renderTemplate(context, "404.html", true) |