2021-09-07 19:39:22 +00:00
|
|
|
// Code generated by qtc from "header.qtpl". DO NOT EDIT.
|
|
|
|
// See https://github.com/valyala/quicktemplate for details.
|
|
|
|
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:1
|
2021-09-07 19:39:22 +00:00
|
|
|
package tpl
|
|
|
|
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:1
|
2021-09-07 19:39:22 +00:00
|
|
|
import (
|
|
|
|
qtio422016 "io"
|
|
|
|
|
|
|
|
qt422016 "github.com/valyala/quicktemplate"
|
|
|
|
)
|
|
|
|
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:1
|
2021-09-07 19:39:22 +00:00
|
|
|
var (
|
|
|
|
_ = qtio422016.Copy
|
|
|
|
_ = qt422016.AcquireByteBuffer
|
|
|
|
)
|
|
|
|
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:1
|
2021-09-07 19:39:22 +00:00
|
|
|
func StreamHeader(qw422016 *qt422016.Writer, title string, pages []NavItem) {
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:1
|
2021-09-07 19:39:22 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>vmalert`)
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:5
|
2021-09-07 19:39:22 +00:00
|
|
|
if title != "" {
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:5
|
2021-09-07 19:39:22 +00:00
|
|
|
qw422016.N().S(` - `)
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:5
|
2021-09-07 19:39:22 +00:00
|
|
|
qw422016.E().S(title)
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:5
|
2021-09-07 19:39:22 +00:00
|
|
|
}
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:5
|
2021-09-07 19:39:22 +00:00
|
|
|
qw422016.N().S(`</title>
|
2022-06-06 21:57:05 +00:00
|
|
|
<link href="static/css/bootstrap.min.css" rel="stylesheet" />
|
2021-09-07 19:39:22 +00:00
|
|
|
<style>
|
|
|
|
body{
|
|
|
|
min-height: 75rem;
|
|
|
|
padding-top: 4.5rem;
|
|
|
|
}
|
|
|
|
.group-heading {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 5px;
|
|
|
|
margin-top: 5px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.group-heading .anchor {
|
|
|
|
position:absolute;
|
|
|
|
top:-60px;
|
|
|
|
}
|
|
|
|
.group-heading span {
|
|
|
|
float: right;
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
.group-heading:hover {
|
|
|
|
background-color: #f8f9fa!important;
|
|
|
|
}
|
2022-05-04 16:02:18 +00:00
|
|
|
.table {
|
|
|
|
table-layout: fixed;
|
|
|
|
}
|
2021-09-07 19:39:22 +00:00
|
|
|
.table .error-cell{
|
|
|
|
word-break: break-word;
|
2022-05-04 16:02:18 +00:00
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
pre {
|
|
|
|
overflow: scroll;
|
|
|
|
min-height: 30px;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
pre::-webkit-scrollbar {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
width: 0px;
|
|
|
|
height: 5px;
|
|
|
|
}
|
|
|
|
pre::-webkit-scrollbar-thumb {
|
|
|
|
border-radius: 5px;
|
|
|
|
background-color: rgba(0,0,0,.5);
|
|
|
|
-webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
|
2021-09-07 19:39:22 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
`)
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:55
|
2021-09-07 19:39:22 +00:00
|
|
|
StreamPrintNavItems(qw422016, title, pages)
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:55
|
2021-09-07 19:39:22 +00:00
|
|
|
qw422016.N().S(`
|
|
|
|
<main class="px-2">
|
|
|
|
`)
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:57
|
2021-09-07 19:39:22 +00:00
|
|
|
}
|
|
|
|
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:57
|
2021-09-07 19:39:22 +00:00
|
|
|
func WriteHeader(qq422016 qtio422016.Writer, title string, pages []NavItem) {
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:57
|
2021-09-07 19:39:22 +00:00
|
|
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:57
|
2021-09-07 19:39:22 +00:00
|
|
|
StreamHeader(qw422016, title, pages)
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:57
|
2021-09-07 19:39:22 +00:00
|
|
|
qt422016.ReleaseWriter(qw422016)
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:57
|
2021-09-07 19:39:22 +00:00
|
|
|
}
|
|
|
|
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:57
|
2021-09-07 19:39:22 +00:00
|
|
|
func Header(title string, pages []NavItem) string {
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:57
|
2021-09-07 19:39:22 +00:00
|
|
|
qb422016 := qt422016.AcquireByteBuffer()
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:57
|
2021-09-07 19:39:22 +00:00
|
|
|
WriteHeader(qb422016, title, pages)
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:57
|
2021-09-07 19:39:22 +00:00
|
|
|
qs422016 := string(qb422016.B)
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:57
|
2021-09-07 19:39:22 +00:00
|
|
|
qt422016.ReleaseByteBuffer(qb422016)
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:57
|
2021-09-07 19:39:22 +00:00
|
|
|
return qs422016
|
2022-05-04 17:26:38 +00:00
|
|
|
//line app/vmalert/tpl/header.qtpl:57
|
2021-09-07 19:39:22 +00:00
|
|
|
}
|