在我的模板中,我按月份对我的帖子进行排序,如下所示:
{{ range (where site.RegularPages "Type" "in" site.Params.mainSections).GroupByDate "January, 2006" -}}
<h1>{{ .Key }}</h1> // output: March, 2022
{{ range (where .Pages ".Params.unlisted" "!=" "true") }}
<div>{{ time.Format "02 January" .Date }} - {{ .Title }}</div> // output: 01 Mars - This is the title of my post
{{ end }}
{{ end }}
对于每个帖子,time.Format我的日期都用我的语言本地化了(这里是法语)。
但是witch is group by month的标题还是英文的(这里是h1)。我如何格式化我的{{ .Key }}以便它可以本地化为我自己的语言并显示“Mars, 2022”而不是“March, 2022”?
慕斯709654
白衣染霜花
相关分类