Kiko
Kiko

Reputation: 187

How to pass date format?

{{ post.publish_at.format(config_get('streams::datetime.date_format')) }}

That code above results into Thursday 30, June 2016. How to remove the thursday? How to pass a format?

Upvotes: 1

Views: 77

Answers (2)

Kiko
Kiko

Reputation: 187

{{ post.publish_at.format("F jS, Y") }}

Upvotes: 2

Manjeet Barnala
Manjeet Barnala

Reputation: 2995

you can use something like this to format date for more information about date in twig

{{ post.published_at|date("j F, Y") }}

Upvotes: 2

Related Questions