mirror of
https://github.com/micromdm/micromdm/
synced 2026-08-01 06:06:11 +08:00
23 lines
537 B
Cheetah
23 lines
537 B
Cheetah
{{- define "base.tmpl" -}}
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="/assets/style.css">
|
|
{{ template "title" . }}
|
|
</head>
|
|
<body>
|
|
{{ template "nav.tmpl" . }}
|
|
{{ template "scripts" . }}
|
|
{{- template "sidebar" . }}
|
|
{{- template "content" . }}
|
|
<footer></footer>
|
|
</body>
|
|
</html>
|
|
{{ end }}
|
|
{{ define "scripts" }}
|
|
{{- end }}
|
|
{{ define "sidebar" }}
|
|
{{- end }}
|