Question

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

Was it helpful?

Solution

I am not sure, but hope this works

Page Created {{ page.created | date: "%F %H:%M:%S %z" }}

Refer this site

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top