12 lines
233 B
HTML
12 lines
233 B
HTML
|
{{define "base"}}
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
{{template "head" .}}
|
||
|
</head>
|
||
|
<body>
|
||
|
{{template "body" .}}
|
||
|
{{template "bootstrap" .}}
|
||
|
</body>
|
||
|
</html>
|
||
|
{{end}}
|