{{ define "main" }} {{/* Intro */}}
{{/* Title and Summary */}}

{{ .Title }}

{{ with .Param "summary" }}

{{ . }}

{{ end }} {{/* Reading Time */}}

{{ with .Date }} {{ $dateMachine := . | time.Format "2006-01-02T15:04:05-07:00" }} {{ $dateHuman := . | time.Format ":date_long" }} {{end}} {{ if .Param "readTime" }} - {{ .ReadingTime }} min {{end }}

{{/* Table of Content */}} {{if .Param "toc" }} {{ end }} {{/* Actual document content */}}
{{ .Content }} {{ partial "comments.html" . }}
{{ end }}