mirror of
https://github.com/gohugoio/hugo.git
synced 2025-04-20 15:23:30 +00:00
Extending rss item limit to 50… can reduce further in template with ‘first N’ functionality.
This commit is contained in:
parent
fa2e58fd4a
commit
44186c6af1
1 changed files with 463 additions and 463 deletions
|
@ -519,7 +519,7 @@ func (s *Site) RenderHomePage() error {
|
||||||
n.Url = helpers.Urlize("index.xml")
|
n.Url = helpers.Urlize("index.xml")
|
||||||
n.Title = "Recent Content"
|
n.Title = "Recent Content"
|
||||||
n.Permalink = permalink(s, "index.xml")
|
n.Permalink = permalink(s, "index.xml")
|
||||||
high := 15
|
high := 50
|
||||||
if len(s.Pages) < high {
|
if len(s.Pages) < high {
|
||||||
high = len(s.Pages)
|
high = len(s.Pages)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue