mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Fixing bug where RSS for site was rendered in wrong location
This commit is contained in:
parent
d829e05036
commit
7468292c4e
1 changed files with 4 additions and 2 deletions
|
@ -524,8 +524,10 @@ func (s *Site) RenderHomePage() error {
|
|||
n.Permalink = permalink(s, "index.xml")
|
||||
y := s.NewXMLBuffer()
|
||||
s.Tmpl.ExecuteTemplate(y, "rss.xml", n)
|
||||
err = s.WritePublic("index.xml", y)
|
||||
return err
|
||||
err = s.WritePublic(".xml", y)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
if a := s.Tmpl.Lookup("404.html"); a != nil {
|
||||
|
|
Loading…
Reference in a new issue