10 lines
175 B
HTML
10 lines
175 B
HTML
|
{{ define "base" }}
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head><title>{{ .Title }}</title></head>
|
||
|
<body>
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
{{ template "content" . }}
|
||
|
</body>
|
||
|
</html>
|
||
|
{{ end }}
|