I'm migrating my site from Drupal to Jekyll. In the YAML Front Matter of each post, I have the timestamp it was created.
{{ page.created }} => 1287199856
In Liquid, how do I convert that to:
2010-10-15 23:30:56 -0400
I am not sure, but hope this works
Page Created {{ page.created | date: "%F %H:%M:%S %z" }}
Refer this site