feat(i18n): change lastUpdatedOn item struct

This commit is contained in:
Jimmy Cai 2020-09-09 22:41:42 +02:00
parent 4d0e260318
commit 04454a51ea
No known key found for this signature in database
GPG key ID: 3EA408E527F37B18
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@
other = "Related contents" other = "Related contents"
[lastUpdatedOn] [lastUpdatedOn]
other ="Last updated on " other ="Last updated on {{ .Count }}"
[widgetArchiveTitle] [widgetArchiveTitle]
other = "Archive" other = "Archive"

View file

@ -18,7 +18,7 @@
<section class="article-time"> <section class="article-time">
{{ (resources.Get "icons/clock.svg").Content | safeHTML }} {{ (resources.Get "icons/clock.svg").Content | safeHTML }}
<span class="article-time--modified"> <span class="article-time--modified">
{{ T "lastUpdatedOn" }} {{ .Lastmod.Format ( or .Site.Params.dateFormat.lastUpdated "Jan 02, 2006 15:04 MST" ) }} {{ T "lastUpdatedOn" (.Lastmod.Format ( or .Site.Params.dateFormat.lastUpdated "Jan 02, 2006 15:04 MST" )) }}
</span> </span>
</section> </section>
{{- end -}} {{- end -}}