Hi,
It is possible to have a base template ? I want to archive something like this:
We have a base.html
<html>
<head>
</head>
<body>
{{ template "content" . }}
</body>
</html>
And in page.html
{{.Extends "base.html"}}
{{ define "content"}}This is a message{{ end }}