{{ define "main" }} {{/* Breadcrumbs */}} {{ if not .IsHome }} {{ partial "breadcrumbs.html" . }} {{ end }}
{{ . | markdownify }}
{{ end }} {{/* Reading Time */}}{{ with .Date }} {{ $dateMachine := . | time.Format "2006-01-02T15:04:05-07:00" }} {{ $dateHuman := . | time.Format (default ":date_long" $.Site.Params.singleDateFormat) }} {{end}} {{ if and (default false (.Param "showLastmod")) (gt .Lastmod .Date) }} {{ $dateMachine := .Lastmod | time.Format "2006-01-02T15:04:05-07:00" }} {{ $dateHuman := .Lastmod | time.Format (default ":date_long" $.Site.Params.singleDateFormat) }} · Updated {{end}} {{ if .Param "readTime" }} · {{ .ReadingTime }} min read {{end }}