.params -> $params

This was causing the authors of all RSS items to render as "Author".
This commit is contained in:
Chris Weyl
2020-09-17 12:01:48 -05:00
parent f787a4e5ad
commit 8073888dd8

View File

@@ -10,7 +10,7 @@
{{- .Page.Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" -}} {{- .Page.Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" -}}
</pubDate> </pubDate>
<author> <author>
{{- .params.author | default (T "author") -}} {{- $params.author | default (T "author") -}}
</author> </author>
<guid> <guid>
{{- .Page.Permalink -}} {{- .Page.Permalink -}}
@@ -33,4 +33,4 @@
{{- $content | replaceRE `<figure[^>]*>.*</figure>` "" | replaceRE `<img[^>]*( /)?>` "" | safeHTML -}} {{- $content | replaceRE `<figure[^>]*>.*</figure>` "" | replaceRE `<img[^>]*( /)?>` "" | safeHTML -}}
{{- "]]>" | safeHTML -}} {{- "]]>" | safeHTML -}}
</description> </description>
</item> </item>