blob: bd051ccc7144182614c4e59942392725f8f61556 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{{ define "main" }}
<h1>{{ .Title }}</h1>
<p>{{ .Date.Format "Jan 2, 2006" }} – {{ .WordCount }} words, ~{{ .ReadingTime }} minutes</p>
{{- if isset .Params "blog_tags" -}}
{{- $tagsLen := len .Params.blog_tags -}}
{{- if gt $tagsLen 0 -}}
<p>
{{- range $i, $v := .Params.blog_tags -}}
{{- if $i }},{{ end }} <a href="/blog/tags/{{ . | urlize }}/">{{ $v }}</a>
{{- end -}}</p>
{{- end -}}
{{- end -}}
{{ .Content }}
{{ end }}
|