diff options
Diffstat (limited to 'srv/src/api/tpl/index.html')
-rw-r--r-- | srv/src/api/tpl/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/srv/src/api/tpl/index.html b/srv/src/api/tpl/index.html index 946a3e4..e27cbef 100644 --- a/srv/src/api/tpl/index.html +++ b/srv/src/api/tpl/index.html @@ -7,9 +7,9 @@ <h2> <a href="{{ PostURL .ID }}">{{ .Title }}</a> </h2> - <span>{{ .PublishedAt.Format "2006-01-02" }}</span> + <span>{{ DateTimeFormat .PublishedAt }}</span> {{ if not .LastUpdatedAt.IsZero }} - <span>(Updated {{ .LastUpdatedAt.Format "2006-01-02" }})</span> + <span>(Updated {{ DateTimeFormat .LastUpdatedAt }})</span> {{ end }} <p>{{ .Description }}</p> </li> |