我使用R blogdown软件包构建了一个网站:
install.packages('blogdown')
blogdown::new_site(theme='yihui/hugo-xmin')
blogdown::serve_site()
xmin主题中的帖子标题如下所示:
我想知道如何在作者下方显示完整的时间戳,例如2017-08-17 15:22:06 GMT
而不是日期2017/08/17
?
答案 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。