Added layout to eleventy config and index page
This commit is contained in:
parent
2705cbce72
commit
080eed16b5
|
@ -1,4 +1,5 @@
|
||||||
module.exports = function(eleventyConfig) {
|
module.exports = function(eleventyConfig) {
|
||||||
|
eleventyConfig.addLayoutAlias('page', 'layouts/page')
|
||||||
|
|
||||||
return {
|
return {
|
||||||
dir: {
|
dir: {
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
---
|
||||||
|
layout: page
|
||||||
|
---
|
||||||
|
|
||||||
# Eleventy Not So Minimal Blog Starter
|
# 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.
|
This starter will help you build a relatively simple blog with a few key features, while using the Eleventy static site generator.
|
||||||
|
|
Loading…
Reference in New Issue