udemy-go-microservices/front-end/cmd/web/templates/base.layout.gohtml
2024-08-27 21:26:04 +02:00

22 lines
238 B
Plaintext

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