// Code generated by qtc from "header.qtpl". DO NOT EDIT. // See https://github.com/valyala/quicktemplate for details. //line app/vmalert/tpl/header.qtpl:1 package tpl //line app/vmalert/tpl/header.qtpl:1 import ( "net/http" "path" "strings" ) //line app/vmalert/tpl/header.qtpl:7 import ( qtio422016 "io" qt422016 "github.com/valyala/quicktemplate" ) //line app/vmalert/tpl/header.qtpl:7 var ( _ = qtio422016.Copy _ = qt422016.AcquireByteBuffer ) //line app/vmalert/tpl/header.qtpl:7 func StreamHeader(qw422016 *qt422016.Writer, r *http.Request, navItems []NavItem, title string) { //line app/vmalert/tpl/header.qtpl:7 qw422016.N().S(` `) //line app/vmalert/tpl/header.qtpl:9 prefix := "/vmalert/" if strings.HasPrefix(r.URL.Path, prefix) { prefix = "" } //line app/vmalert/tpl/header.qtpl:13 qw422016.N().S(` vmalert`) //line app/vmalert/tpl/header.qtpl:17 if title != "" { //line app/vmalert/tpl/header.qtpl:17 qw422016.N().S(` - `) //line app/vmalert/tpl/header.qtpl:17 qw422016.E().S(title) //line app/vmalert/tpl/header.qtpl:17 } //line app/vmalert/tpl/header.qtpl:17 qw422016.N().S(` `) //line app/vmalert/tpl/header.qtpl:67 streamprintNavItems(qw422016, r, title, navItems) //line app/vmalert/tpl/header.qtpl:67 qw422016.N().S(`
`) //line app/vmalert/tpl/header.qtpl:69 } //line app/vmalert/tpl/header.qtpl:69 func WriteHeader(qq422016 qtio422016.Writer, r *http.Request, navItems []NavItem, title string) { //line app/vmalert/tpl/header.qtpl:69 qw422016 := qt422016.AcquireWriter(qq422016) //line app/vmalert/tpl/header.qtpl:69 StreamHeader(qw422016, r, navItems, title) //line app/vmalert/tpl/header.qtpl:69 qt422016.ReleaseWriter(qw422016) //line app/vmalert/tpl/header.qtpl:69 } //line app/vmalert/tpl/header.qtpl:69 func Header(r *http.Request, navItems []NavItem, title string) string { //line app/vmalert/tpl/header.qtpl:69 qb422016 := qt422016.AcquireByteBuffer() //line app/vmalert/tpl/header.qtpl:69 WriteHeader(qb422016, r, navItems, title) //line app/vmalert/tpl/header.qtpl:69 qs422016 := string(qb422016.B) //line app/vmalert/tpl/header.qtpl:69 qt422016.ReleaseByteBuffer(qb422016) //line app/vmalert/tpl/header.qtpl:69 return qs422016 //line app/vmalert/tpl/header.qtpl:69 } //line app/vmalert/tpl/header.qtpl:73 type NavItem struct { Name string Url string } //line app/vmalert/tpl/header.qtpl:79 func streamprintNavItems(qw422016 *qt422016.Writer, r *http.Request, current string, items []NavItem) { //line app/vmalert/tpl/header.qtpl:79 qw422016.N().S(` `) //line app/vmalert/tpl/header.qtpl:81 prefix := "/vmalert/" if strings.HasPrefix(r.URL.Path, prefix) { prefix = "" } //line app/vmalert/tpl/header.qtpl:85 qw422016.N().S(` `) //line app/vmalert/tpl/header.qtpl:100 } //line app/vmalert/tpl/header.qtpl:100 func writeprintNavItems(qq422016 qtio422016.Writer, r *http.Request, current string, items []NavItem) { //line app/vmalert/tpl/header.qtpl:100 qw422016 := qt422016.AcquireWriter(qq422016) //line app/vmalert/tpl/header.qtpl:100 streamprintNavItems(qw422016, r, current, items) //line app/vmalert/tpl/header.qtpl:100 qt422016.ReleaseWriter(qw422016) //line app/vmalert/tpl/header.qtpl:100 } //line app/vmalert/tpl/header.qtpl:100 func printNavItems(r *http.Request, current string, items []NavItem) string { //line app/vmalert/tpl/header.qtpl:100 qb422016 := qt422016.AcquireByteBuffer() //line app/vmalert/tpl/header.qtpl:100 writeprintNavItems(qb422016, r, current, items) //line app/vmalert/tpl/header.qtpl:100 qs422016 := string(qb422016.B) //line app/vmalert/tpl/header.qtpl:100 qt422016.ReleaseByteBuffer(qb422016) //line app/vmalert/tpl/header.qtpl:100 return qs422016 //line app/vmalert/tpl/header.qtpl:100 }