Human Readable Dates in 11ty

11ty does not come with a filter for human-readable dates out of the box. Here’s how to convert dates to a human-readable format:

Install luxon:

npm i luxon

Import it in your eleventy.config.js:

import { DateTime } from “luxon”;

Crea…


This content originally appeared on DEV Community and was authored by Abdullah Alam

11ty does not come with a filter for human-readable dates out of the box. Here's how to convert dates to a human-readable format:

Install luxon:

npm i luxon

Import it in your eleventy.config.js:

import { DateTime } from "luxon";

Create a filter:

export default async function(eleventyConfig) {
  // other config

  // human readable date filter
  eleventyConfig.addFilter("readableDate", (dateObj) => {
    return DateTime.fromJSDate(dateObj, { zone: "utc" }).toFormat(
      "dd LLL yyyy",
    );
  });
}

Use the filter in your template:

{{ mypost.data.date | readableDate }}

A note about using the date variable

11ty recommends using page.date instead of the item's data.date. In my project, if I've overridden the default date, it wasn't picking it up. Use whichever one works for you in your project, the filter should work regardless.


This content originally appeared on DEV Community and was authored by Abdullah Alam


Print Share Comment Cite Upload Translate Updates
APA

Abdullah Alam | Sciencx (2025-07-01T21:12:20+00:00) Human Readable Dates in 11ty. Retrieved from https://www.scien.cx/2025/07/01/human-readable-dates-in-11ty/

MLA
" » Human Readable Dates in 11ty." Abdullah Alam | Sciencx - Tuesday July 1, 2025, https://www.scien.cx/2025/07/01/human-readable-dates-in-11ty/
HARVARD
Abdullah Alam | Sciencx Tuesday July 1, 2025 » Human Readable Dates in 11ty., viewed ,<https://www.scien.cx/2025/07/01/human-readable-dates-in-11ty/>
VANCOUVER
Abdullah Alam | Sciencx - » Human Readable Dates in 11ty. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2025/07/01/human-readable-dates-in-11ty/
CHICAGO
" » Human Readable Dates in 11ty." Abdullah Alam | Sciencx - Accessed . https://www.scien.cx/2025/07/01/human-readable-dates-in-11ty/
IEEE
" » Human Readable Dates in 11ty." Abdullah Alam | Sciencx [Online]. Available: https://www.scien.cx/2025/07/01/human-readable-dates-in-11ty/. [Accessed: ]
rf:citation
» Human Readable Dates in 11ty | Abdullah Alam | Sciencx | https://www.scien.cx/2025/07/01/human-readable-dates-in-11ty/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.