mirror of
https://github.com/dnote/dnote
synced 2026-03-17 07:55:50 +01:00
18 lines
257 B
Text
18 lines
257 B
Text
{{define "base"}}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{{ title }}</title>
|
|
|
|
{{template "css" .}}
|
|
</head>
|
|
|
|
<body>
|
|
{{template "header" .}}
|
|
|
|
{{template "alert" .Alert}}
|
|
|
|
{{template "yield" .Yield}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|