From 080eed16b585df8f9acfe1fa7fe4d2c69187464e Mon Sep 17 00:00:00 2001
From: Claudia Reynders <>
Date: Sun, 24 Apr 2022 15:00:40 +0200
Subject: [PATCH] Added layout to eleventy config and index page

---
 .eleventy.js | 1 +
 src/index.md | 4 ++++
 2 files changed, 5 insertions(+)

diff --git a/.eleventy.js b/.eleventy.js
index 28e0128..2505db7 100644
--- a/.eleventy.js
+++ b/.eleventy.js
@@ -1,4 +1,5 @@
 module.exports = function(eleventyConfig) {
+  eleventyConfig.addLayoutAlias('page', 'layouts/page')
 
   return {
     dir: {
diff --git a/src/index.md b/src/index.md
index 2bc0952..0ab4703 100644
--- a/src/index.md
+++ b/src/index.md
@@ -1,3 +1,7 @@
+---
+layout: page
+---
+
 # Eleventy Not So Minimal Blog Starter
 
 This starter will help you build a relatively simple blog with a few key features, while using the Eleventy static site generator.