{{ define "main"}}
{{ .Scratch.Set "customTitleHeaderSet" true }} {{ .Scratch.Set "customTitleHeader" "Blog" }} {{ .Scratch.Set "customTitleHeaderLink" "/blog" }} {{ partial "header.html" . }}

{{ .Title }}

{{ 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.Ceil (div $readTime 60) }} minutes.

{{ end }}
    {{ range .Param "tags" }} {{ $name := . }} {{ with $.Site.GetPage (printf "/tags/%s" ($name | urlize)) }}
  • {{ $name }}
  • {{ end }} {{ end }}
{{ .Content }}

Have you published a response to this? :

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