Created
November 19, 2018 06:22
-
-
Save ykyuen/f0116b0056fd48fb23f2638be48d658b to your computer and use it in GitHub Desktop.
setup-nested-html-template-in-go-echo-web-framework-07
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{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