Extend template

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 }}

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.