Fixing bug where RSS for site was rendered in wrong location

This commit is contained in:
spf13 2013-10-07 09:23:42 -04:00
parent d829e05036
commit 7468292c4e

View file

@ -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 {