From 8073888dd899a9ee120212d49015eaaa16cc7fc6 Mon Sep 17 00:00:00 2001 From: Chris Weyl Date: Thu, 17 Sep 2020 12:01:48 -0500 Subject: [PATCH] `.params` -> `$params` This was causing the authors of all RSS items to render as "Author". --- layouts/partials/rss/item.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/partials/rss/item.html b/layouts/partials/rss/item.html index 28256b49..7af54d24 100644 --- a/layouts/partials/rss/item.html +++ b/layouts/partials/rss/item.html @@ -10,7 +10,7 @@ {{- .Page.Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" -}} - {{- .params.author | default (T "author") -}} + {{- $params.author | default (T "author") -}} {{- .Page.Permalink -}} @@ -33,4 +33,4 @@ {{- $content | replaceRE `]*>.*` "" | replaceRE `]*( /)?>` "" | safeHTML -}} {{- "]]>" | safeHTML -}} - \ No newline at end of file +