{{ define "main" }}
{{ partial "blog/sidebar.html" . }}
{{ if and (.Params.h1) (not .Params.notitle) }}

{{ .Params.h1 }}

{{ else if and (ne .Title "") (not .Params.notitle) }}

{{ .Title }}

{{ end }}

Posted on

{{ partial "blog/authors.html" (dict "context" . "authors" .Params.authors) }}
{{ .Content }}
{{ if .Params.tags }} {{ end }}
{{ end }}