Skip to content

Instantly share code, notes, and snippets.

@ykyuen
Created November 19, 2018 06:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ykyuen/682d3c3d5163ef91adf225a479d8cad7 to your computer and use it in GitHub Desktop.
Save ykyuen/682d3c3d5163ef91adf225a479d8cad7 to your computer and use it in GitHub Desktop.
setup-nested-html-template-in-go-echo-web-framework-10
{{define "base.html"}}
<!DOCTYPE html>
<html>
<head>
<title>{{template "title" .}}</title>
</head>
<body>
{{template "body" .}}
</body>
</html>
{{end}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment