pollux.codes

Files for the pollux.codes site
git clone git://pollux.codes/git/pollux.codes.git
Log | Files | Refs

single.html (345B)


      1 {{ define "main" }}
      2 <h1>{{ .Title }}</h1>
      3 <p>Written on {{ .Date.Format "2006-01-02" }}. {{ .WordCount }} words, ~{{ .ReadingTime }} {{ if gt .ReadingTime 1 }}mins{{ else }}min{{ end }} </p>
      4 {{ range $k, $term := .GetTerms "blogtags" }}{{ if $k }}, {{ end }}<a href="{{ .RelPermalink }}">{{ lower .Title }}</a>{{ end }}
      5 {{ .Content }}
      6 {{ end }}