我在github页面网站上安装了我的旧博客,并将其从textpattern转移到jekyll。它位于名为/journal
的子目录中。个别帖子显示帖子的日期没有问题。
在/journal/index.html page, {{ page.date | date: "%x" }}
上根本不起作用。
我需要添加什么才能将日期显示在博客的索引页面上?
答案 0 :(得分:1)
如果您在index.html
中对帖子进行循环播放,那么您将需要使用帖子的日期而不是page.date
。它看起来像这样:
{% for post in paginator.posts %}
{{ post.date | date: "%x" }}
{% endfor %}