Reputation: 187
{{ 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
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