Skip to content

Instantly share code, notes, and snippets.

@ykyuen
Created November 19, 2018 06:22
Show Gist options
  • Save ykyuen/f0116b0056fd48fb23f2638be48d658b to your computer and use it in GitHub Desktop.
Save ykyuen/f0116b0056fd48fb23f2638be48d658b to your computer and use it in GitHub Desktop.
setup-nested-html-template-in-go-echo-web-framework-07
{{define "home.html"}}
<!DOCTYPE html>
<html>
<head>
<title>Boatswain Blog | {{index . "name"}}</title>
</head>
<body>
<h1>{{index . "msg"}}</h1>
</body>
</html>
{{end}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment