//"sync"
)
-const slash = string(os.PathSeparator)
-
var DefaultTimer = nitro.Initalize()
type Site struct {
for k, o := range s.Indexes[plural] {
n := s.NewNode()
n.Title = strings.Title(k)
- url := Urlize(plural + slash + k)
+ url := Urlize(plural + "/" + k)
plink := url
if s.Config.UglyUrls {
n.Url = url + ".html"
n.Date = o[0].Date
n.Data[singular] = o
n.Data["Pages"] = o
- layout := "indexes" + slash + singular + ".html"
+ layout := "indexes/" + singular + ".html"
x, err := s.RenderThing(n, layout)
if err != nil {
return err
}
func (s *Site) RenderIndexesIndexes() (err error) {
- layout := "indexes" + slash + "indexes.html"
+ layout := "indexes/indexes.html"
if s.Tmpl.Lookup(layout) != nil {
for singular, plural := range s.Config.Indexes {
n := s.NewNode()
n.Data["OrderedIndex"] = s.Info.Indexes[plural]
x, err := s.RenderThing(n, layout)
- s.WritePublic(plural+slash+"index.html", x.Bytes())
+ s.WritePublic(plural+"/index.html", x.Bytes())
return err
}
}
n.RSSlink = template.HTML(MakePermalink(string(n.Site.BaseUrl), string(section+".xml")))
n.Date = data[0].Date
n.Data["Pages"] = data
- layout := "indexes" + slash + section + ".html"
+ layout := "indexes/" + section + ".html"
x, err := s.RenderThing(n, layout)
if err != nil {
return err
}
- s.WritePublic(section+slash+"index.html", x.Bytes())
+ s.WritePublic(section+"/index.html", x.Bytes())
if a := s.Tmpl.Lookup("rss.xml"); a != nil {
// XML Feed
n.Permalink = template.HTML(string(n.Site.BaseUrl) + n.Url)
y := s.NewXMLBuffer()
s.Tmpl.ExecuteTemplate(y, "rss.xml", n)
- s.WritePublic(section+slash+"index.xml", y.Bytes())
+ s.WritePublic(section+"/index.xml", y.Bytes())
}
}
return nil
func (s *Site) Stats() {
fmt.Printf("%d pages created \n", len(s.Pages))
for _, pl := range s.Config.Indexes {
- fmt.Printf("%d %s created\n", len(s.Indexes[pl]), pl)
+ fmt.Printf("%d %s index created\n", len(s.Indexes[pl]), pl)
}
}