17 lines
234 B
HTML
17 lines
234 B
HTML
{{ define "base" }}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
{{ template "head" . }}
|
|
<title>{{ template "title" . }}</title>
|
|
</head>
|
|
|
|
<body>
|
|
{{ template "content" . }}
|
|
</body>
|
|
|
|
</html>
|
|
{{ end }}
|