From bc07327e60d5f87b15a63c3b07911ed7755f03dd Mon Sep 17 00:00:00 2001 From: Zach Leatherman Date: Thu, 3 Mar 2022 17:11:31 -0600 Subject: [PATCH] Remove alias --- .eleventy.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/.eleventy.js b/.eleventy.js index 6a939c3..f78dca3 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -16,9 +16,6 @@ module.exports = function(eleventyConfig) { eleventyConfig.addPlugin(pluginSyntaxHighlight); eleventyConfig.addPlugin(pluginNavigation); - // Alias `layout: post` to `layout: layouts/post.njk` - eleventyConfig.addLayoutAlias("post", "layouts/post.njk"); - eleventyConfig.addFilter("readableDate", dateObj => { return DateTime.fromJSDate(dateObj, {zone: 'utc'}).toFormat("dd LLL yyyy"); });