Files
micromdm/ui/layouts/base.tmpl
Victor Vrantchan c71958384e build a simple web framework. (#691)
Added the basics for HTML templates, serving assets and so on.
2020-07-17 12:41:33 -04:00

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 }}