date
Converts a timestamp into another date format. The format for this syntax is the same as strftime
. The input uses the same format as Ruby’s Time.parse
.
date
works on strings if they contain well-formatted dates.
To get the current time, pass the special word "now"
(or "today"
) to date
.
Input
{{ article.published_at | date: "%a, %b %d, %y" }}
{{ article.published_at | date: "%Y" }}
{{ "March 14, 2016" | date: "%b %d, %y" }}
This page was last updated at {{ "now" | date: "%Y-%m-%d %H:%M" }}.
Output
Fri, Jul 17, 15
2015
Mar 14, 16
This page was last updated at 2021-06-04 21:02.
Note: If caching or static site generation is involved, the value will be the moment when the page was last generated from the template, not when the page is presented to a user.