29 lines
817 B
HTML
29 lines
817 B
HTML
{{define "layout"}}
|
|
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>{{.Title}}</title>
|
|
<link rel="stylesheet" href="/ui/assets/style.css" />
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<span class="brand">managerd 管理台</span>
|
|
<a href="/ui/devices">设备</a>
|
|
<a href="/ui/tasks">任务</a>
|
|
<a href="/ui/templates">模板</a>
|
|
<a href="/ui/api">接口调试</a>
|
|
<span class="spacer"></span>
|
|
<a class="muted small" href="/openapi.json">OpenAPI</a>
|
|
<a class="muted small" href="/health">健康检查</a>
|
|
</nav>
|
|
<main>
|
|
{{if .Error}}<div class="error">{{.Error}}</div>{{end}}
|
|
{{if .Message}}<div class="msg">{{.Message}}</div>{{end}}
|
|
{{.ContentHTML}}
|
|
</main>
|
|
</body>
|
|
</html>
|
|
{{end}}
|