diff options
Diffstat (limited to 'layouts/_default/term.html')
-rw-r--r-- | layouts/_default/term.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/layouts/_default/term.html b/layouts/_default/term.html index cf3239a..35ef1de 100644 --- a/layouts/_default/term.html +++ b/layouts/_default/term.html @@ -1,9 +1,12 @@ {{ define "main" }} -<h2>{{ .Title }}</h2> +<h1>{{ .Title }}</h1> <ul> {{ range .Pages }} <li> <a href="{{ .Permalink }}">{{ .Title }}</a> + <time datetime="{{ .Lastmod }}"> + {{ .Lastmod.Format "January 2, 2006" }} + </time> </li> {{ end }} </ul> |