Limit the number of articles in the rss feed and output the full article
contents
This commit is contained in:
parent
72307e55ee
commit
7bf87e781f
2 changed files with 2 additions and 1 deletions
|
@ -5,6 +5,7 @@ description = "The personal space of yet another sysadmin"
|
||||||
enableRobotsTXT = true
|
enableRobotsTXT = true
|
||||||
enableGitInfo = true
|
enableGitInfo = true
|
||||||
paginate = 32
|
paginate = 32
|
||||||
|
rssLimit = 32
|
||||||
|
|
||||||
# Highlighting config
|
# Highlighting config
|
||||||
pygmentsCodeFences = true
|
pygmentsCodeFences = true
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>
|
<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>
|
||||||
{{end}}
|
{{end}}
|
||||||
<guid>{{ .Permalink }}</guid>
|
<guid>{{ .Permalink }}</guid>
|
||||||
<description>{{ .Summary | html }}</description>
|
<description>{{ .Content | html }}</description>
|
||||||
</item>
|
</item>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue