Go Html Template
with
Blocks
Examples are list.html and single.html
{{ define "main" }}
<ol>
{{ range .Sections }}
<li>{{ .Title }}</li>
{{ end }}
</ol>
{{ .Content }}
{{ end }}
These are referenced by baseof.html as
{{ block "main" . }}
{{ end }}
{{ template … }}
Variables
Predefined
{{ .Title }}
Custom
{{ $address }}
{{ FUNCTION ARG1 ARG2 .. }}
{{ add 1 2 }}