【问题标题】:Change the format of the time stamp in the post title in HUGO-Xmin theme更改 HUGO-Xmin 主题中帖子标题中时间戳的格式
【发布时间】:2017-11-07 11:40:10
【问题描述】:

我用 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

【问题讨论】:

  • yihui/hugo-xmin,正如我已经提到的。

标签: css r hugo blogdown


【解决方案1】:

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 了解更多信息。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-02-10
    • 2020-06-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多