Skip to content

Instantly share code, notes, and snippets.

@darthmall
Created August 29, 2022 20:32
Show Gist options
  • Select an option

  • Save darthmall/760c91334898ff22c20ddee0c27b1350 to your computer and use it in GitHub Desktop.

Select an option

Save darthmall/760c91334898ff22c20ddee0c27b1350 to your computer and use it in GitHub Desktop.
Eleventy global data in computed frontmatter
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ site.title }}</title>
</head>
<body>
<h1>{{ site.title }}</h1>
<img src="{{ hero_img }}">
{{ content | safe }}
</body>
</html>
eleventyComputed layout
hero_img
{{ site.hero }}
base.njk

This is my homepage.

{
"title": "Test site",
"hero": "/img/hero.jpg"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment