From 502ab5bdb15566049f7de3f6cef969690bf3f1a8 Mon Sep 17 00:00:00 2001 From: Zach Leatherman Date: Fri, 16 Oct 2020 14:33:59 -0500 Subject: [PATCH] =?UTF-8?q?The=20pathPrefix=20url=20filter=20isn=E2=80=99t?= =?UTF-8?q?=20needed=20here=20for=20permalinks.=20Otherewise=20the=20files?= =?UTF-8?q?=20generate=20to=20a=20special=20folder.=20We=20want=20the=20di?= =?UTF-8?q?rectory=20output=20to=20look=20the=20same,=20not=20with=20hardc?= =?UTF-8?q?oded=20pathprefix=20directories.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- feed/feed.njk | 2 +- feed/json.njk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/feed/feed.njk b/feed/feed.njk index 6500b56..161fc93 100755 --- a/feed/feed.njk +++ b/feed/feed.njk @@ -1,6 +1,6 @@ --- # Metadata comes from _data/metadata.json -permalink: "{{ metadata.feed.path | url }}" +permalink: "{{ metadata.feed.path }}" eleventyExcludeFromCollections: true --- diff --git a/feed/json.njk b/feed/json.njk index 74ada7b..0658efa 100644 --- a/feed/json.njk +++ b/feed/json.njk @@ -1,6 +1,6 @@ --- # Metadata comes from _data/metadata.json -permalink: "{{ metadata.jsonfeed.path | url }}" +permalink: "{{ metadata.jsonfeed.path }}" eleventyExcludeFromCollections: true --- {