diff options
Diffstat (limited to 'themes/flamingo/layouts/_default/single.html')
-rw-r--r-- | themes/flamingo/layouts/_default/single.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/themes/flamingo/layouts/_default/single.html b/themes/flamingo/layouts/_default/single.html index 99ec989..6261b4b 100644 --- a/themes/flamingo/layouts/_default/single.html +++ b/themes/flamingo/layouts/_default/single.html @@ -4,7 +4,10 @@ <h1>{{ .Title }}</h1> {{ if .Date }} - <time>{{ .Date.Format "Jan 02, 2006" }}</time> + <time>Created At: {{ .Date.Format "02 Jan 2006" }}</time></br> + {{ end }} + {{ if .Lastmod }} + <time>Last Modified: {{ .Lastmod.Format "02 Jan 2006"}}</time> {{ end }} {{ partial "tagbar.html" }} |