31476802-go-microservice/front-end/cmd/web/templates/base.layout.gohtml
2025-05-16 14:39:17 -05:00

22 lines
No EOL
238 B
Text

{{define "base" }}
<!doctype html>
<html lang="en">
{{template "header" .}}
<body>
{{block "content" .}}
{{end}}
{{block "js" .}}
{{end}}
{{template "footer" .}}
</body>
</html>
{{end}}