diff options
author | Julien Dessaux | 2021-03-12 12:34:15 +0100 |
---|---|---|
committer | Julien Dessaux | 2021-03-12 12:34:15 +0100 |
commit | 7bf87e781fd3dbefc5e919a40fca89f0bc0a0dd4 (patch) | |
tree | 5627735d67b60237e4ab33317c558d871be154a3 /layouts | |
parent | Added RSS feed link in nav menu, prevented docs section from showing up in th... (diff) | |
download | www-7bf87e781fd3dbefc5e919a40fca89f0bc0a0dd4.tar.gz www-7bf87e781fd3dbefc5e919a40fca89f0bc0a0dd4.tar.bz2 www-7bf87e781fd3dbefc5e919a40fca89f0bc0a0dd4.zip |
Limit the number of articles in the rss feed and output the full article
contents
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/_default/rss.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/_default/rss.xml b/layouts/_default/rss.xml index a69b0b2..36acade 100644 --- a/layouts/_default/rss.xml +++ b/layouts/_default/rss.xml @@ -33,7 +33,7 @@ <author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author> {{end}} <guid>{{ .Permalink }}</guid> - <description>{{ .Summary | html }}</description> + <description>{{ .Content | html }}</description> </item> {{ end }} {{ end }} |