datetime
The datetime
type can store a date and time.
datetime
value can also include time zone info.
The canonical format for the type in text form is YYYY-MM-DD HH:MM:SS[ Z]
.
Z
is optional information.
You can use Z
field with below informations.
UTC
, EST
America/Dominica
+0900
, -0930
You can also use datetimeformat filter with this type.
pub_date: 2016-01-13 07:53:22
or
pub_date: 2016-01-13 07:53:22 UTC
or
pub_date: 2016-01-13 07:53:22 EST
or
pub_date: 2016-01-13 07:53:22 America/Dominica
or
pub_date: 2016-01-13 07:53:22 +0900
[fields.pub_date] label = Publication date type = datetime
<p>Published: {{ this.pub_date.strftime('%Y-%m-%d %H:%M:%S') }}
Comments