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

{{ .Title }}

{{if .Param "summary" }}

{{ .Summary }}

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

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

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