{{ define "main"}}

{{ .Title }}

{{ partial "header.html" . }} {{ if not .Date.IsZero }} {{ $singlePageDateFormat := .Site.Params.singlePageDateFormat | default "January 2, 2006"}} {{ $pubdate := .Date.Format $singlePageDateFormat }}

Published on

{{- if .Lastmod }} {{- $lastmod := .Lastmod.Format $singlePageDateFormat }} {{- if ne $lastmod $pubdate }}

Updated on

{{- end }} {{ end }} {{ end }} {{ $readTime := mul (div (countwords .Content) 220.0) 60 }} {{ if gt $readTime 60 }}

Reading Time: {{ math.Floor (div $readTime 60) }} minutes and {{ mod $readTime 60 }} seconds.

{{ end }}
{{ .Content }}

Have you published a response to this? :

{{ $webmentionjs := resources.Get "js/webmention.min.js" }} {{ partial "footer.html" . }} {{ end }}