such as:
layout.html
{{define "layout"}}
<!DOCTYPE html>
<html>
<head>
<title>{{index . "Title"}}</title>
</head>
<body>
<header><h1>My Site</h1></header>
{{template "content" .}}
<footer>© copyright</footer>
</body>
</html>
{{end}}
index.html
{{define "content"}}
<p>Welcome to the home page!</p>
{{end}}
I would like to implement enhanced features.
such as:
layout.html
{{define "layout"}} <!DOCTYPE html> <html> <head> <title>{{index . "Title"}}</title> </head> <body> <header><h1>My Site</h1></header> {{template "content" .}} <footer>© copyright</footer> </body> </html> {{end}}index.html
{{define "content"}} <p>Welcome to the home page!</p> {{end}}I would like to implement enhanced features.