Full text RSS feeds (#2103)

Currently, only the short description of each post is included in the RSS feed.  This change will update the feed to include the whole text of each blog post.
This commit is contained in:
craigbox 2018-08-11 07:14:54 -07:00 committed by Martin Taillefer
parent d701e5dfc3
commit 0714acb8a2
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
{{ if and (not $post.Draft) $post.IsPage }}
<item>
<title>{{ $post.Title }}</title>
<description>{{ $post.Description }}</description>
<description>{{ $post.Content | html }}</description>
<pubDate>{{ $post.PublishDate.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
<link>{{ $post.Permalink }}</link>
<author>{{ $post.Params.attribution }}</author>