更改 HUGO-Xmin 主题中 post 标题中时间戳的格式
Change the format of the time stamp in the post title in HUGO-Xmin theme
我用 R blogdown 包建立了一个网站:
install.packages('blogdown')
blogdown::new_site(theme='yihui/hugo-xmin')
blogdown::serve_site()
xmin 主题中的 post 标题如下所示:
我想知道如何在作者下方显示完整的时间戳,例如 2017-08-17 15:22:06 GMT
而不是日期 2017/08/17
?
日期在 hugo-xmin 主题的模板 single.html
中 this line 格式化:
{{ if .Params.date }}<h2 class="date">{{ .Date.Format "2006/01/02" }}</h2>{{ end }}
您可以将格式 2006/01/02
更改为 2006-01-02 15:04:05 GMT
。有关详细信息,请参阅 the documentation of the .Format
function。
我用 R blogdown 包建立了一个网站:
install.packages('blogdown')
blogdown::new_site(theme='yihui/hugo-xmin')
blogdown::serve_site()
xmin 主题中的 post 标题如下所示:
我想知道如何在作者下方显示完整的时间戳,例如 2017-08-17 15:22:06 GMT
而不是日期 2017/08/17
?
日期在 hugo-xmin 主题的模板 single.html
中 this line 格式化:
{{ if .Params.date }}<h2 class="date">{{ .Date.Format "2006/01/02" }}</h2>{{ end }}
您可以将格式 2006/01/02
更改为 2006-01-02 15:04:05 GMT
。有关详细信息,请参阅 the documentation of the .Format
function。