巴克励步
发布于:2025-01-02
strftime 一致。输入格式与 Ruby 中的 Time.parse 一致。
{{ article.published_at | date: "%a, %b %d, %y" }}
Fri, Jul 17, 15
{{ article.published_at | date: "%Y" }}
2015
date 能够作用于包含良好格式化的日期字符串:
{{ "March 14, 2016" | date: "%b %d, %y" }}
Mar 14, 16
"now" (或 "today") 单词传入 date 过滤器可以获取当前时间:
This page was last updated at {{ "now" | date: "%Y-%m-%d %H:%M" }}.
This page was last updated at 2020-05-01 14:41.