23 lines
485 B
Go
23 lines
485 B
Go
|
|
// Code generated by go generate; DO NOT EDIT.
|
||
|
|
|
||
|
|
package handler
|
||
|
|
|
||
|
|
var TplCommonMap = map[string]string{
|
||
|
|
"layout": `{{ define "layout" }}
|
||
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<link rel="stylesheet" href="/style.css"/>
|
||
|
|
<title>Status</title>
|
||
|
|
{{ template "head" . }}
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
{{ template "content" . }}
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
{{ end }}
|
||
|
|
{{ define "head" }}{{ end }}`,
|
||
|
|
}
|