From e455fb9170413f696e23572863a3d277bb0b5875 Mon Sep 17 00:00:00 2001 From: Ghyslain Leclerc Date: Wed, 28 Dec 2016 21:28:07 -0500 Subject: Fixed the .Site.Author.name reference to use currently recommended info. Now uses .Site.Author.firstname and .Site.Author.lastname. --- layouts/rss.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/rss.xml b/layouts/rss.xml index ddc64ce..2d352a9 100644 --- a/layouts/rss.xml +++ b/layouts/rss.xml @@ -15,7 +15,7 @@ {{ .Title }} {{ .Permalink }} {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }} - {{ with .Site.Author.email }}{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}} + {{ with .Site.Author.email }}{{.}}{{end}} ({{ with .Site.Author.firstname }}{{.}}{{ end }} {{ with .Site.Author.lastname }}{{.}}{{end}}) {{ .Permalink }} {{ .Content | html }} -- cgit v1.2.3