{{ define "main" }} {{/* Intro */}} {{ partial "breadcrumbs.html" . }}
{{/* 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 }}

{{ if .Param "showTags" }} {{ $taxonomy := "tags" }} {{ with .Param $taxonomy }} {{ $last := sub (. | len) 1 }}
{{ range $index, $tag := . }} {{ with $.Site.GetPage (printf "/%s/%s" $taxonomy $tag) -}} #{{ $tag | urlize }} {{ end }} {{ end }}
{{ end }} {{ end }} {{/* Table of Content */}} {{ if .Param "toc" }} {{ end }} {{/* Actual document content */}}
{{ .Content }} {{ partial "comments.html" . }}
{{ if not (.Param "hideBackToTop") }}
back to top
{{ end }}
{{ end }}