Post 日期有一些偏移
Post date has some offset
在我的post中我定义了
---
title: "Writing a manual test"
date: 2015-09-18 22:40:58
---
但执行 jekyll serve
它呈现为
我认为这与我的 PC 的时间偏移有关,目前是 UTC-2:00。
如何告诉 Jekyll 使用 post "as is" 的日期?
要将所有帖子的时间设置为 UTC,请添加行
timezone: UTC
至_config.yml
。
在我的post中我定义了
---
title: "Writing a manual test"
date: 2015-09-18 22:40:58
---
但执行 jekyll serve
它呈现为
我认为这与我的 PC 的时间偏移有关,目前是 UTC-2:00。
如何告诉 Jekyll 使用 post "as is" 的日期?
要将所有帖子的时间设置为 UTC,请添加行
timezone: UTC
至_config.yml
。