11ty

Eleventy Documentation

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

Documentation Pages

Front Matter Data #

Add data in your template front matter, like this:

---
title: My page title
---
<!doctype html>
<html>
…

The above is using YAML syntax.

Locally assigned front matter values override things further up the layout chain. Note also that layouts can contain front matter variables that you can use in your local template. Leaf template front matter takes precedence over layout front matter. Read more about Layouts.

User Defined Front Matter Customizations #

Here are a few special front matter keys you can assign:

Alternative Front Matter Formats #

Eleventy uses the gray-matter package for front matter processing. gray-matter includes support for YAML, JSON, and even arbitrary JavaScript front matter.

JSON Front Matter #

---json
{
  "title": "My page title"
}
---
<!doctype html>
<html>
…

JavaScript Front Matter #

---js
{
  title: "My page title"
  currentDate: function() {
    // wow you can have a function in here
    return (new Date()).toLocaleString();
  }
}
---
<!doctype html>
<html>
…

Sources of Data #

The order of priority for sources of data is (from highest priority to lowest):

  1. Front Matter Data
  2. Template Data Files
  3. Directory Data Files (and ascending Parent Directories)
  4. Global Data Files