Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jnjosh/internet-weblog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Johnson <jnjosh@jnjosh.com>2017-02-26 20:47:18 +0300
committerGitHub <noreply@github.com>2017-02-26 20:47:18 +0300
commit8708fdbe0d6217a4001b4df1f441fdf3f60350c9 (patch)
tree0cf0e2ff9a58173dd637934cbe96c6290b781deb
parent69c0730b993ca8903d21afbe439134fef0166238 (diff)
parent2a1e884689e275fef82a0848e6f552cd51925a4d (diff)
Merge pull request #3 from ryugibo/fix-rss-error
Fix rss error
-rw-r--r--layouts/rss.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/rss.xml b/layouts/rss.xml
index 2d352a9..2ec97e9 100644
--- a/layouts/rss.xml
+++ b/layouts/rss.xml
@@ -15,7 +15,7 @@
<title>{{ .Title }}</title>
<link>{{ .Permalink }}</link>
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
- {{ with .Site.Author.email }}<author>{{.}}{{end}} ({{ with .Site.Author.firstname }}{{.}}{{ end }} {{ with .Site.Author.lastname }}{{.}}{{end}})</author>
+ <author>{{ with .Site.Author.email }}{{.}}{{end}} ({{ with .Site.Author.firstname }}{{.}}{{ end }} {{ with .Site.Author.lastname }}{{.}}{{end}})</author>
<guid>{{ .Permalink }}</guid>
<description>{{ .Content | html }}</description>
</item>