udemy-go-microservices/front-end/cmd/web/templates/base.layout.gohtml

22 lines
238 B
Plaintext
Raw Normal View History

2024-08-27 19:24:24 +00:00
{{define "base" }}
<!doctype html>
<html lang="en">
{{template "header" .}}
<body>
{{block "content" .}}
{{end}}
{{block "js" .}}
{{end}}
{{template "footer" .}}
</body>
</html>
{{end}}