11ty

Eleventy Documentation

This is an older version of Eleventy. Full release history. Go to the newest Eleventy docs. You could try /docs/dates/ although it may not exist.

Documentation Pages

Content Dates #

Setting a Content Date in Front Matter #

Add a date key to your front matter to override the default date (file creation) and customize how the file is sorted in a collection.

Syntax YAML Front Matter
---
date: 2016-01-01
---
Syntax YAML Front Matter
---
date: Last Modified
---

Valid date values:

If a date key is omitted from the file, the date is assumed to be:

  1. If the file name has a YYYY-MM-DD format (anywhere), this date is used.
  2. File creation date.
Running Eleventy on a Continuous Integration Server? Your collections may appear out of order! See Common Pitfalls.
Are your dates displaying off by one day? You’re probably displaying UTC dates in a local time zone. See Common Pitfalls.