在HUGO-Xmin主题中更改帖子标题中的时间戳的格式

时间:2017-11-06 20:29:50

标签: css r hugo blogdown

我使用R blogdown软件包构建了一个网站:

install.packages('blogdown')
blogdown::new_site(theme='yihui/hugo-xmin')
blogdown::serve_site()

xmin主题中的帖子标题如下所示:

enter image description here

我想知道如何在作者下方显示完整的时间戳,例如2017-08-17 15:22:06 GMT而不是日期2017/08/17

1 个答案:

答案 0 :(得分:2)

日期格式为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