ikurotime / gitgud

public
main / internal/interface/web/templates/not_found_templ.go
2.3 KB · Go Raw
 1// Code generated by templ - DO NOT EDIT.
 2
 3// templ: version: v0.3.865
 4package templates
 5
 6//lint:file-ignore SA4006 This context is only used if a nested component is present.
 7
 8import "github.com/a-h/templ"
 9import templruntime "github.com/a-h/templ/runtime"
10
11import "gitgud/internal/domain"
12
13func NotFound(user *domain.User) templ.Component {
14	return templruntime.GeneratedTemplate(func(templ_7745c5c3_Input templruntime.GeneratedComponentInput) (templ_7745c5c3_Err error) {
15		templ_7745c5c3_W, ctx := templ_7745c5c3_Input.Writer, templ_7745c5c3_Input.Context
16		if templ_7745c5c3_CtxErr := ctx.Err(); templ_7745c5c3_CtxErr != nil {
17			return templ_7745c5c3_CtxErr
18		}
19		templ_7745c5c3_Buffer, templ_7745c5c3_IsBuffer := templruntime.GetBuffer(templ_7745c5c3_W)
20		if !templ_7745c5c3_IsBuffer {
21			defer func() {
22				templ_7745c5c3_BufErr := templruntime.ReleaseBuffer(templ_7745c5c3_Buffer)
23				if templ_7745c5c3_Err == nil {
24					templ_7745c5c3_Err = templ_7745c5c3_BufErr
25				}
26			}()
27		}
28		ctx = templ.InitializeContext(ctx)
29		templ_7745c5c3_Var1 := templ.GetChildren(ctx)
30		if templ_7745c5c3_Var1 == nil {
31			templ_7745c5c3_Var1 = templ.NopComponent
32		}
33		ctx = templ.ClearChildren(ctx)
34		templ_7745c5c3_Var2 := templruntime.GeneratedTemplate(func(templ_7745c5c3_Input templruntime.GeneratedComponentInput) (templ_7745c5c3_Err error) {
35			templ_7745c5c3_W, ctx := templ_7745c5c3_Input.Writer, templ_7745c5c3_Input.Context
36			templ_7745c5c3_Buffer, templ_7745c5c3_IsBuffer := templruntime.GetBuffer(templ_7745c5c3_W)
37			if !templ_7745c5c3_IsBuffer {
38				defer func() {
39					templ_7745c5c3_BufErr := templruntime.ReleaseBuffer(templ_7745c5c3_Buffer)
40					if templ_7745c5c3_Err == nil {
41						templ_7745c5c3_Err = templ_7745c5c3_BufErr
42					}
43				}()
44			}
45			ctx = templ.InitializeContext(ctx)
46			templ_7745c5c3_Err = errorState("404", "This page doesn't exist", "The page you're looking for can't be found, or you don't have access to it.").Render(ctx, templ_7745c5c3_Buffer)
47			if templ_7745c5c3_Err != nil {
48				return templ_7745c5c3_Err
49			}
50			return nil
51		})
52		templ_7745c5c3_Err = Layout("Not found · gitgud", user).Render(templ.WithChildren(ctx, templ_7745c5c3_Var2), templ_7745c5c3_Buffer)
53		if templ_7745c5c3_Err != nil {
54			return templ_7745c5c3_Err
55		}
56		return nil
57	})
58}
59
60var _ = templruntime.GeneratedTemplate