mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
1aed7a66d4
The site now has polygot markup and can handle both XHTML5 and HTML5 parsing rules. My staging site will be XHTML but my main site will be HTML5, just in case of parse errors. If other tools (e.g. LightHouse) end up supporting XHTML5, I'll consider switching the content-type to XHTML.
19 lines
787 B
HTML
19 lines
787 B
HTML
{{ $displayCount := string .WordCount -}}
|
|
{{- if gt .WordCount 5000 -}}
|
|
{{- $thousands := string (div .WordCount 1000) -}}
|
|
{{- $displayCount = printf "%s thousand" $thousands -}}
|
|
About
|
|
{{- end }}
|
|
<data itemprop="wordCount" value="{{ .WordCount }}">
|
|
{{ $displayCount }}
|
|
</data> words
|
|
{{- with .ReadingTime -}}
|
|
{{- $displayTime := string . -}}
|
|
{{- if gt . 60 -}}
|
|
{{- $hours := div . 60 -}}
|
|
{{- $minutes := mod . 60 -}}
|
|
{{- $displayTime = (printf "%d hour and %d" $hours $minutes) | safeHTML -}}
|
|
{{- end -}}
|
|
; a{{ if lt . 10 }} short{{ else if and (gt . 20) (lt . 30) }} somewhat long{{ else if and (gt . 29) (lt . 60) }} long{{ else if gt . 59 }} very long{{ end }}
|
|
<time itemprop="timeRequired" datetime="PT{{ . }}M">{{ $displayTime }} minute</time> read
|
|
{{- end }}
|